1.

How to use css() in JQuery?

Answer»

With the help of CSS() method, we can add or remove CSS PROPERTIES to an HTML element.

Example

Syntax
$(selector).css(PROPERTY);

$("#DIVID").css("display", "block");



Discussion

No Comment Found