Answers for "css style 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
4

jquery set style property

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

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

jquery element css

//Set one style attribute
$('#element').css('display', 'block');
//Set multiple style attributes
$('#element').css({'display': 'block', 'background-color' : '#2ECC40'}); /* Multiple style *
Posted by: Guest on June-05-2020
1

jquery styles

//create an object and add styles
const styles= {
  backgroundColor: "crimson",
  fontWeight: "bold",
  border: "2px solid lime",
};

$("selector").css(styles);
Posted by: Guest on September-15-2020
1

how to css in jquery

$(init);
    
function init() {
    $("h1").css("backgroundColor", "yellow");
    $("#myParagraph").css({ "backgroundColor": "black", "color": "white" });
    $(".bordered").css("border", "1px solid black");
}
Posted by: Guest on October-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language