Answers for "add id to jquery"

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

var pdiv = $( "p" );
pdiv.add( "div" ); // WRONG, pdiv will not change
Posted by: Guest on October-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language