Open In App

What is the use of css() method in jQuery ?

Last Updated : 02 Jun, 2023
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

In this article, we will see how to use css() method to set the styles on elements dynamically using jQuery. The css() method is used to change the style property of the selected element. basically, The CSS() method is used to get the value of a certain CSS property that has been applied to a specific HTML element. Additionally, it is used to set the CSS property with its value for the specific HTML element.

Syntax:

$(selector).css(property)

Approach: Here, we have added a paragraph element and a button and after clicking on the button, the css() method is called and this method applies the CSS styles on the paragraph element.

Example: In this example, we are using the above-explained approach.

Output:


Similar Reads