
tools
Parallax scrolling sites have been a pretty hot UX thing of late, being showcased on various blogs. Although the “ooooh! aahhh!”-ness of it all has subsided, I think this type of site is certainly a legitimate design and development option for many brands. To help you choose a JavaScript or jQuery library or plugin for doing this sort of thing (unless you’re a masochist and want to write one from scratch!)
Parallax Scrolling Scripts and Plugins
jQuery and JavaScript Tutorials - http://www.learnjquery.org/tutorials/
What is Stately? Stately is a symbol font that makes it easy to create a map of the United States using only HTML and CSS. Each state can be styled independently with CSS for making simple visualizations. And since it's a font, it scales bigger and smaller while staying sharp as a tack.
Stately | The simple map font
Useful Software/websites
I always get sentimental this time of year. For me, the next few weeks will be a dizzying blur of aromatic turkey, neatly wrapped gifts, and family. In an effort to keep myself from becoming too wrapped up in the holiday shenanigans of black Friday sales and rushing to buy the last can of cranberry sauce, I have compiled a list of 20 web design tools that I am thankful for this year. I use most of these tools on a daily basis, and hope that you will find them as helpful as I do! 1- Firebug
20 Tools Web Designers Should Be Thankful For This Thanksgiving
The HTML5 revolution has provided us some awesome JavaScript and HTML APIs. Some are APIs we knew we've needed for years, others are cutting edge mobile and desktop helpers. Regardless of API strength or purpose, anything to help us better do our job is a step in the right direction. I recently shared with you 5 HTML5 APIs You Didn’t Know Existed in the hope that some of them would inspire you to improve your own web apps. I'd like to share with you 5 more lessor known HTML5 APIs -- hopefully you find some of them useful!
5 More HTML5 APIs You Didn’t Know Existed
The HTML5 Time Element Is Back and Better Than Ever
Tutorial 3 - Nested lists - all steps combined There may be times when you want to open a side navigation list out, to show subsections within a section. The most semantically correct way to achieve this is by using nested lists. HTML CODE <div id="navcontainer"> <ul> <li><a href="#">Milk</a> <ul> <li><a href="#">Goat</a></li> <li><a href="#">Cow</a></li> </ul> </li> <li><a href="#">Eggs</a> <ul> <li><a href="#">Free-range</a></li> <li><a href="#">Other</a></li> </ul> </li> <li><a href="#">Cheese</a> <ul> <li><a href="#">Smelly</a></li> <li><a href="#">Extra smelly</a></li> </ul> </li> </ul> </div> Step 1 - Make a nested list

