Category: References

  • Utilities

    Jquery provides serveral utilities in the formate of $(name space). These methods are helpful to complete the programming tasks.a few of the utility methods are as show below. $.trim() $.trim() is used to Removes leading and trailing whitespace $.trim( ” lots of extra whitespace ” ); $.each() $.each() is used to Iterates over arrays and…

  •  Properties

    In jQuery, properties generally refer to the attributes and values associated with DOM elements that can be accessed or manipulated using jQuery methods. jQuery Properties In the following table, we have listed all the jQuery Properties − Sr.No. Methods & Description 1 jqueryThe jquery property returns the version of the jQuery library in use. 2 jQuery.fx.intervalSets the…

  • Miscellaneous Reference

    The Miscellaneous methods in jQuery are a set of functions that do not fall into specific categories like DOM manipulation, event handling, or AJAX. They provide additional functionalities that enhance the flexibility and usability of jQuery. Common miscellaneous methods include $.each(), $.extend(), $.data(), $.proxy(), and $.noConflict(), etc. jQuery Miscellaneous Methods In the following table, we have listed…

  • HTML/CSS Reference

    The jQuery HTML/CSS references are a set of methods provided by jQuery to manipulate HTML content and CSS properties of elements. jQuery HTML/CSS Methods In the following table, we have listed all the jQuery HTML/CSS Methods − The methods below work for both HTML and XML documents. In the following table, we have listed all the jQuery…

  • Effects Reference

    The jQuery Effects are predefined methods in jQuery library that allow us to add animations and transitions to our web elements. These effects can be showing and hiding elements, fading elements in and out, sliding elements, etc. Why to use jQuery Effects? We can use the jQuery effects in the following cases − jQuery Effect Methods In…

  • Events Reference

    The jQuery Events are actions that happens in the DOM (Document Object Model), which can be detected and used to trigger JavaScript functions. jQuery simplifies event handling by providing methods to attach event handlers to elements and to trigger events. Clicking a button, hovering over an element, submitting a form, or resizing a window are common examples…

  • Selectors Reference

    The jQuery Selectors are used to “find” (or select) HTML elements based on their name, id, classes, types, attributes, values, etc. jQuery provides set of selectors, including basic selectors, attribute selectors, etc. These selectors simplifies the process of identifying and interacting with specific elements, reducing the complexity of JavaScript code. jQuery Selectors Reference In the following table,…