Category: HTML/CSS

  • jQuery attr()

    The jQuery attr() method is used to set or return attributes and values of the selected elements. There are two usage of jQuery attr() method. Syntax: To return an attribute’s value: To set an attribute and value: To set an attribute and value by using a function: To set multiple attributes and values: Parameters of…

  • jQuery remove

    The jQuery remove() method is used to remove the selected elements out of the DOM. It removes the selected element itself, as well as everything inside it (including all texts and child nodes). This method also removes the data and the events of the selected elements. If you want to remove elements without removing data…

  • jQuery clone

    The jQuery clone() method is used to make copies of the set of matched elements. It also makes copies of their child nodes, texts and attributes. The clone() method is a convenient way to duplicate elements on a page. Syntax: Parameters of jQuery clone() method Parameter Description True It specifies that event handlers also should…

  • jQuery appendTo

    The appendTo() method is used to add additional content at the end of the selected elements. It is same as jQuery append() method. There is only syntactical difference between append() and appendTo() methods. Syntax: Example of jQuery append To method Let’s take an example to demonstrate jQuery appendTo() method.

  • jQuery append

    The jQuery append() method is used to insert specified content as the last child (at the end of) the selected elements in the jQuery collection. The append () and appendTo () methods are used to perform the same task. The only difference between them is in the syntax. Syntax: Parameters of jQuery append() method Parameter…

  • jQuery insertAfter()

    The jQuery after() and jQuery insertAfter() both methods are used to perform the same task of inserting additional contents after the selected elements. Difference between jQuery after and insertAfter The main difference between after() and insertAfter is in syntax and placement of the content and target. In after() method, target is the selected element and…

  • jQuery after

    The jQuery after() method is used to insert specified content after the selected element. It is just like jQuery append() method. If you want to insert content before the selected element, you should use jQuery before() method. Syntax: Parameters of jQuery after() method Parameter Description Content It is a mandatory parameter. It specifies the content…

  • jQuery prepend()

    The jQuery prepend() method is used to insert the specified content at the beginning (as a first child) of the selected elements. It is just the opposite of the jQuery append() method. If you want to insert the content at the end of the selected elements, you should use the append method. Syntax: Parameters of…

  • jQuery before

    The jQuery before() method is used to insert the specified content before the selected elements. It adds the content specified by the parameter, before each element in the set of matched elements. The before() and insertBefore() both methods are used to perform same task. The main difference between them is in syntax, and the placement…

  • jQuery css

    The jQuery CSS() method is used to get (return)or set style properties or values for selected elements. It facilitates you to get one or more style properties. jQuery CSS() method provides two ways: 1) Return a CSS property It is used to get the value of a specified CSS property. Syntax: Let’s take an example…