Answers for "change css of this jquery"

11

jquery add style

//revising Ankur's answer
//Syntax:
$(selector).css({property-name:property-value});

//Example:
$('.bodytext').css({'color':'red'});
Posted by: Guest on July-08-2020
42

jquery css

$('#element').css('display', 'block'); /* Single style */
$('#element').css({'display': 'block', 'background-color' : '#2ECC40'}); /* Multiple style */
Posted by: Guest on March-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language