Answers for "check css rule jquery"

1

jquey check css style

$('#yourElement').css('position') == 'absolute'
Posted by: Guest on May-15-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

Code answers related to "Javascript"

Browse Popular Code Answers by Language