.removeClass() method in Jquery
Description: The Jquery removeClass() method remove the css class for the matched element. It will remove single/multiple classes for each element in the set of matched elements. Note: The removeClass method will remove all css class names
.hasClass() method in Jquery
Description: The Jquery hasClass() method validate whethere selected elements having a specified class name or not. If selected elements has matched class name then it will return "true" else it will return "false". Syntax .hasClass( className )
addClass() method in Jquery
Description: The Jquery addClass() method add the specified class(s) for the matched/selected elements. If we need to add more than one class then we need to use Space as the separate between the class names. It does
css() method in Jquery
Description: Jquery .css() method Get/set the css property for the matched elements. Syntax GET Property: .css( propertyName ) SET Property: .css( propertyName, value ) propertyName A css property name value A value to set for the
serializeArray() method in Jquery
Description: The jQuery serializedArray() Method is used to create a array of string by serializing form values. It operates on a collection of forms and its controls. We can select one or more form elements
serialize() method in Jquery
Description: The Jquery serialize() method creates a URL encoded text string by serializing form values. It is used in form controls like <input>, <textarea>, <select> etc.. It serializes the form values so that its serialized values
clearqueue() Effect in Jquery
Description: The Jquery clearQueue() method removes all queued items from the queue that have not yet been executed. When the .clearQueue() method is executed then all functions on the queue that have not been executed are
dequeue() Effect in Jquery
Description: Execute the next function on the queue for the matched element. When jQuery.dequeue() is called, the next function on the queue is removed from the queue, and then executed. Syntax $(selector).dequeue( element [, queueName