Answers for "w3schools jquery addclass"

17

jquery add class

$('some_element').addClass('some-class');

// You can add more than one class at one time
$('some_element').addClass('some-class another-class yet-another-class');

// Even thought jQuery allows you to do this
$('some_element').addClass('some-class').addClass('another-class').addClass('yet-another-class');

// That would be really wasteful, think of the planet!
// But more importantly, your RAM
// oh and those poor folks who be viewing your website
Posted by: Guest on March-02-2020
8

jquery addclass

$("#elem").addClass("classname");
Posted by: Guest on June-06-2020
31

addclass javascript

var someElement= document.getElementById("myElement");
    someElement.className += " newclass";//add "newclass" to element (space in front is important)
Posted by: Guest on July-24-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language