CssGalleries

Just another Css Site

March 12, 2013
by Roberto
0 comments

Links of the week

The In-Between: Breakpoints. Break. Points. Points at which things break in your design. http://bit.ly/WEDcSC Learning the Web Form Fundamentals http://bit.ly/j4GjTB 20 Great Examples of the Flat Trend in Web Design http://bit.ly/YHIYVX Responsible Web Design | Smashing Coding http://bit.ly/WZdM25 Designing For … Continue reading

March 1, 2013
by Roberto
0 comments

Links for the week

Designing In The Transition To A Multi-Device World http://bit.ly/V9z9lX Carousel Interaction Stats http://bit.ly/UewzcE Character Codes — HTML Codes, Hexadecimal Codes & HTML Names http://bit.ly/VUxBHk Why Responsive Web Design Has To Win Out http://bit.ly/XP1JW9 Improving Your Responsive Workflow with Style Guides … Continue reading

June 28, 2012
by Roberto
1 Comment

Ever wanted to Lowercase or Uppercase everything in certain DOM elements with jQuery?

This is how to do it. I know I could have made a plugin but im lazy right now. $(“element”).each( function(index, value) { var textToLower = $(this).text(); $(this).text(textToLower.toLowerCase()); } ); $(“element”).each( function(index, value) { var textToLower = $(this).text(); $(this).text(textToLower.toUpperCase()); } … Continue reading