Category: HTML/CSS

  • jQuery val()

    There are two usage of jQuery val() method. Syntax: It is used to get value. It is used to set value. It is used to set value using function. Parameters of jQuery val() method Parameter Description Value It is a mandatory parameter. It is used specify the value of the attribute. Function (index, currentvalue) It…

  • jQuery text

    The jQuery text() method is used to set or return the text content of the selected elements. To return content: When this method is used to return content, it returns the combined text content of all matched elements without the HTML markup. To set content: When this method is used to set content, it overwrites the content…

  • jQuery html

    jQuery html() method is used to change the entire content of the selected elements. It replaces the selected element content with new contents. Note: It is a very useful function but works in a limited area because of its API documentation. The API documentation of the jQuery html function consists of three method signatures. The…