jQuery fans blog and community sharing news, plugins, video tutorials, demos and more.

jQuery refresh page on browser resize

Basic code snippet to refresh the page on a browser resize using JavaScript. //refresh page on browser resize $(window).bind(’resize’, function(e) {   console.log(’window resized..’);   this.location.reload(false); /* false to get page from cache */   /* true to fetch page from server */ }); If…

Continue reading →

Output word by word of paragraph using jQuery

jQuery code snippet which outputs each word in a sentence at a specified interval. You can change the speed at which is outputs by the speed parameter in milliseconds. You can view the demo or load the code in jsfiddle below. DEMO jQuery $(document).ready(function ()…

Continue reading →

JavaScript to validate email address using a regex

This is a code snippet for basic JavaScript to validate email address using a regular expression. See fvor help on how to use regular expressions with jQuery. You can also load the code in jsfiddle below. Update 12/05/13: Separated into versions for testing. Version 1…

Continue reading →

js code snippet to open a popup window

Nothing special just some JavaScript code snippet to open a popup window.     W = window,     D = document;     //set the window to widgets dimensions     var winH = 400, //allow for window padding and header      …

Continue reading →

jQuery, JavaScript, CSS3 popout scale effects

Documenting some useful jQuery, JavaScript, CSS3 popout scale effects code snippets. Hopefully will be useful for someone. jQuery IE Compatiable scale transition effect The problems of solving cross browsers transition effects is sometimes like following a long yellow brick road. CSS Only – works in…

Continue reading →

Page 1 of 47 1 2 3 4 5 ... Last →
promote your blog
Best CDN
scroll to top