Answers for "add id to section jquery"

3

add id jquery

$('element').attr('id', 'value');
Posted by: Guest on July-24-2020
0

how to add id in jquery

$( "li" ).add( "p" ).css( "background-color", "red" );
Posted by: Guest on October-09-2020
0

how to add id in jquery

<h2>Greetings</h2>
<div class="container">
  <div class="inner">
    Hello
    <p>Test</p>
  </div>
  <div class="inner">
    Goodbye
    <p>Test</p>
  </div>
</div>
Posted by: Guest on October-09-2020
0

how to add id in jquery

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>append demo</title>
  <style>
  p {
    background: yellow;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<strong>Hello world!!!</strong>
<p>I would like to say: </p>
 
<script>
$( "p" ).append( $( "strong" ) );
</script>
 
</body>
</html>
Posted by: Guest on October-09-2020
-1

how to add id in jquery

<ul>
  <li>list item 1</li>
  <li>list item 2</li>
  <li>list item 3</li>
</ul>
<p>a paragraph</p>
Posted by: Guest on October-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language