Awesome CSS3 & jQuery Slide Out Button

Development

Here is an awesome little slide out button. The inspiration for that button came from photoshop.com where Flash is used to create a nice slide out effect. This button does not behave exactly the same, but the effect is quite n... read more

February 8, 2010 by Mary Lou 14 Comments »

Fresh Set of CSS-only Menus

Web Design

Here is a set of fresh CSS-only menus for your website - no images, no JavaScript. The markup for the menus is always the same and I used 12 different stylesheets for their appearance. The main idea... read more

January 31, 2010 by Mary Lou 8 Comments »

24 Beautiful Hotel Website Designs to Get Inspired

Web Design

A great website design can be a powerful tool for establishing a brand. In the hotel business, a website gives the chance to present the services and atmosphere that is being offered to the target group. This collection demonst... read more

January 23, 2010 by Mary Lou 40 Comments »

CSS and jQuery Tutorial: Fancy Apple-Style Icon Slide Out Navigation

Tutorials

Today I want to show you, how to create an Apple-style navigation menu with a twist. Although "fancy" and "Apple-style" don't really go together, I thought that it's time for something different. ... read more

January 17, 2010 by Mary Lou 30 Comments »

Self-resizing Navigation Menu with jQuery

Development

Today I am going to share a nice CSS only (with some jQuery) navigation menu that adapts the size of its list items automatically. Sometimes you need to reuse a menu and it can take some work to ada... read more

January 12, 2010 by Mary Lou 14 Comments »

Some Useful JavaScript & jQuery Snippets - Part 4

Development

How to get client ip address with jQuery $.getJSON("http://jsonip.appspot.com?callback=?",function(data){ alert( "Your ip: " + data.ip); }); How to parse XML with jQuery file.xml: <?xml version="1.0" ?> <re... read more

January 11, 2010 by cody 4 Comments »

Find Your First Twitter Follower

Development

This application aims to show you who your first follower was in twitter. It's done with PHP and jQuery and of course it uses the twitter API. Two of the available API methods are used : statuses/show and followers/ids. Note t... read more

January 9, 2010 by chadking 2 Comments »

Some Useful JavaScript & jQuery Snippets - Part 3

Development

How to hide all children div except a specific one with jQuery? $('#target div:not(#exclude)').hide(); //or $('#target').children().filter(':not(#exclude)').hide(); Detecting when a div’s height changes using jQuery $('... read more

January 8, 2010 by cody 5 Comments »