All Posts

Browse through all our articles, tutorials, roundups, and experiments.

CSS Mania jQuery Plugin

In Playground by

Here is a jQuery plugin that makes use of the CSS Mania API. CSS Mania is a well known website showcase site where designs can be submitted and rated. A […]

Some Useful JavaScript & jQuery Snippets – Part 3

In Playground by

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 $(‘element’).bind(‘resize’, function(){ alert( ‘Height changed to’ […]

1 64 65 66 67 68 70