Categories
Archives
Tag Archives: jquery
Creating WordPress Snow Effects With jQuery Snowfall
Merry Christmas! This tutorial will show how to create snow effect using awesome jQuery plugin Snowfall. The main idea is using your page body to handle the snow. Download the jQuery plugin Snowfall, create a directory ‘snowfall’ in your theme …Read more.
jQuery Find Element Id with Particular Pattern
$(‘span’).each(function(){ if( $(this).attr(‘id’).match(/pattern/) ) { // your code goes here } } It depends on what kind of pattern you’re looking for. If your pattern is something like “MasterPageElement_CheckBox_4443″, “MasterPageElement_CheckBox_4448″, etc. then you could also use: $(“span[id^=MasterPageElement_CheckBox]“) There are 3 …Read more.