Anna
0
Q:

append after element jquery

$( "h2" ).insertBefore( $( ".container" ) );
2
$( "<p>Test</p>" ).insertAfter( ".inner" );
4
var newDiv = $('<div>My new div</div>');  //create Div Element w/ jquery
$( "#someOtherElement" ).append(newDiv); //append new div somewhere
11
$("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
$("p").append(" <b>You can write your Text Here </b>.");
2
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