To upload files from local machine to the server is called file uploading. It works exactly the same as the definition, when we select file… Read More
Tag Archives: jQuery-Misc
There are two methods to move an element inside another element are listed below: Method 1: Using append() method: This append() Method in jQuery is… Read More
JavaScript, often abbreviated as JS, is a high-level, interpreted programming language that conforms to the ECMAScript specification. jQuery is a JavaScript library designed to simplify HTML… Read More
Jquery UI (user interface) is the JavaScript library built on top of jQuery JavaScript Library. It is the collection of user interface interactions, effects, widgets,… Read More
The get() Method in jQuery is used to get the DOM element specified by the selectors. Syntax $(selector).get(index) Parameters: This method accepts single parameter index… Read More
The toArray() Method in jQuery is used to return the elements that are matched by the jQuery selector as an array. Syntax $(selector).toArray() Parameters: This… Read More
The each() Method in jQuery is used to specify the function to run for each matched element. Syntax: $(selector).each(function(index, element)) Parameters: This method accepts single… Read More
The size() is an inbuilt method in jQuery used to find the number of elements matched by the given selector. This method is removed in… Read More
The index() is an inbuilt method in jQuery which is used to return the index of the a specified elements with respect to selector. Syntax:… Read More
The data() is an inbuilt method in jQuery which is used to attach data or get data for the selected elements. Syntax: $(selector).data(para1); Parameter : It… Read More
The removeData() is an inbuilt method in jQuery which is used to remove those data which are previously set with the data() method. Syntax: $(selector).removeData(args);… Read More
The noConflict() is an inbuilt function in jQuery and jQuery generally use “$” sign as a shortcut identifier. There are many javascript libraries like Angular… Read More