jQuery Animate – Advanced

Your ads will be inserted here byEasy Plugin for AdSense.Please go to the plugin admin page toPaste your ad code OR Suppress this ad slot. In the last jQuery Animate article I wrote, I mentioned how to use the .animate() function with few tricks. But here, I am going to write about jQuery Animate function… Continue reading jQuery Animate – Advanced

jQuery: Catch Keyboard Events

Your ads will be inserted here byEasy Plugin for AdSense.Please go to the plugin admin page toPaste your ad code OR Suppress this ad slot. Lot of jQuery projects relies on keyboard/mouse event like pressing “p” for previous and “n” for next also using the arrows. Because this is important, I have managed a code… Continue reading jQuery: Catch Keyboard Events

jQuery Animate

Your ads will be inserted here byEasy Plugin for AdSense.Please go to the plugin admin page toPaste your ad code OR Suppress this ad slot. Here I will mention how to use the jquery animate function and the usability and flexibility of it. The syntax of this function is: $.animate(options, settings, callback); /* you can… Continue reading jQuery Animate

Scroll window smoothly using jQuery

Using jQuery animate() function to do a smooth scrolling: I have also created a div as follow: <div id=”scrollToHere”> Scroll to here </div> You need something to run your script. Create a button like this: <input type=”button” onclick=”scollWin();” value=”Scroll up” /> The jQuery Code will be like this: function scrollWin(){ $(‘html,body’).animate({ scrollTop: $(“#scrollToHere”).offset().top }, 800);… Continue reading Scroll window smoothly using jQuery