Answers for "style element jquery"

2

jquery style

$("p").css("background-color", "yellow");
Posted by: Guest on September-16-2021
4

jquery set style property

$("selector").css("property", "value");

// Example:
$("div").css("background-color", "red");
Posted by: Guest on October-01-2020
1

styling element using jquery

Syntax:
$(selector).css(property-name:property-value);

Example:
$('.bodytext').css('color':'red');
Posted by: Guest on June-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language