Answers for "adding class using jquery"

5

addclass jquery

$( "p" ).addClass( "myClass yourClass" );
Posted by: Guest on October-31-2020
7

add class jquery

$("#my_id").attr("class", "my_new_class_name");
Posted by: Guest on April-13-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
0

how to add class on the base of has class in jquery

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>addClass demo</title>
  <style>
  p {
    margin: 8px;
    font-size: 16px;
  }
  .selected {
    color: blue;
  }
  .highlight {
    background: yellow;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<p>Hello</p>
<p>and</p>
<p>Goodbye</p>
 
<script>
$( "p" ).last().addClass( "selected" );
</script>
 
</body>
</html>
Posted by: Guest on October-09-2020

Code answers related to "adding class using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language