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
Category: DHTML
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
Web page transparency for all browsers
Every browser has different CSS properties for less-used actions like: transparency or opacity. It was something weird to do transparency on your web page because there are lot of different web browsers. To make that easy, I have collected information and generated a CSS class that will work on most of the browsers. See the… Continue reading Web page transparency for all browsers
Better way to load XML document with Javascript
The better way to load XML document on all browsers is to use AJAX technique. After testing XML with Javascript. I fount that Safari (on Mac OSX 10) does not support XML with Javascript. So, How to load it then?