fadeTo() Effect in Jquery
Description: jQuery fadeTo() method is used to fading the given opacity for the matched/selected element. It is similar to the .fadeIn method but that method unhides the element and always fades to 100% opacity. Syntax .fadeTo( duration,
.fadeToggle() Effect in Jquery
Description: jQuery fadeToggle() method is used to toggle between the fadeIn() and fadeOut() methods. If the selected/matched elements are fadedIn then the fadeToggle will make them faded out. And if the selected elements are fadedOut then
.fadeOut() Effect in Jquery
Description: The fadeOut( ) method fades out all selected/matched elements by applying the opacity to 0, then setting display to "none" . Finally the optional callback will be triggered after completion of animation. Syntax .fadeOut(
fadeIn() Effect in Jquery
Description: Display matched elements by fading them to opaque. In simple word, its animates the opacity for the matched elements. Syntax .fadeIn( [duration ] [easing] [callback] ) $("#div").fadeIn("slow"); Duration/speed It specifies the speed of the
Implementing jQuery.ajax() using Jquery
What is JQuery Ajax? AJAX is standing for Asynchronous JavaScript and XML. It helps us to fetch the information from the server without reloading the page (ie., without refresh). JQuery is a great tool which provides a
jQuery Events Handling
What is Event? Events are actions that can be used in the application. The events can be bind using jquery methods like .on, .bind,etc.,. Below are the few examples for events Mouse click Mouse over on
jQuery DOM Traversing
JQuery is a powerful framework which provides very flexible DOM traversal methods to help us by selecting the elements. We can select the element by two ways namely random and sequential method. In simple word,