Answers for "give important property in javascript"

1

how to make a property important in javascript

element.style.setProperty("display", "inline", "important")
Posted by: Guest on May-14-2020
0

how to add important tag js

$(".className").each(function () {
	this.style.setProperty('display', 'inline-block', 'important');
}
                     
//jQuery answer to avoid creating functions
Posted by: Guest on October-26-2021

Code answers related to "give important property in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language