style element jquery code example
Example 1: jquery set style property
$("selector").css("property", "value");
// Example:
$("div").css("background-color", "red");
Example 2: styling element using jquery
Syntax:
$(selector).css(property-name:property-value);
Example:
$('.bodytext').css('color':'red');