Q:

append after an element jquery

$( "h2" ).insertBefore( $( ".container" ) );
2
$( "<p>Test</p>" ).insertAfter( ".inner" );
4
$("p").after(" <b>You can write your Text Here </b>.");
2
<div class="container">
  <h2>Greetings</h2>
  <div class="inner">Hello</div>
  <div class="inner">Goodbye</div>
</div>
<script>$( "<p>Test</p>" ).insertAfter( ".inner" );</script>
1
Suppose you have to append as below scenario

<select name="username">
  <option>Select name</option>
------	i wants my array data gets iterate here  ------
</select>

Js:
$("select option").after(data);

/*
I hope it will help you.
Namaste _/\_
*/
0

New to Communities?

Join the community