The jQuery Mousemove event provides real time X and Y coordinates of the mouse pointer. You can use it to find the current position of your mouse.
(more…)
The jQuery CDN is a way to include jQuery in your website without actually downloading and keeping it your website’s folder. There are a number of jQuery CDNs which you can use, examples - Google, Microsoft, Cloudflare, jQuery own CDN & more.
(more…)
The jQuery Eq method is used to select elements by their index. The index in jQuery always starts with 0.
(more…)
jQuery has 2 fading methods which are .fadeIn() and .fadeOut().
The fadeIn method displays the element by fading it to opaque.
The fadeOut method hides the element by fading it to transparent.
Note – jQuery does the fading by changing the opacity of the element.
(more…)
If you want to let users select a Date from a calendar, for your input control, then use jQuery Datepicker plugin. The Datepicker (which is actually a calendar) will show in a small popup when the input control gets the focus and will close when the input control loses focus.
(more…)
DataTables is a powerful jQuery plugin for creating for displaying information in tables and adding interactions to them. It provides searching, sorting and pagination without any configuration. In this 2 minutes tutorial you will learn the basics of DataTables and use it in your website.
(more…)
The jQuery Animate - .animate() helps you to create custom Animations on CSS properties.
The Instant Username Availability Check feature will enable visitors to easily find out which usernames are available and which are already taken. So when they come to create their account on your website they don’t have to:
(more…)
The jQuery getJSON Method (.getJSON()) is an AJAX method that is used to fetch JSON data using HTTP GET request.
(more…)
In this tutorial I will use jQuery Timer features to create few examples like Image Slider, time clock, stop watch and random background color changing effect. These examples are created with setInterval function of JavaScript.
(more…)