JUDY
0
Q:

append before jquery

$( "h2" ).insertBefore( $( ".container" ) );
2
$('ElementBeforeYouWantToInsert').prepend('<div>the element you want to insert</div>');
1
$("p").after(" <b>You can write your Text Here </b>.");
2
Consider the following HTML:

Html:
---------------
<h2>Greetings</h2>
<div class="container">
  <div class="inner">Hello</div>
  <div class="inner">Goodbye</div>
</div>

You can create content and insert it into several elements at once:

jquery:
--------------
$( ".inner" ).prepend( "<p>Test</p>" );

Each <div class="inner"> element gets this new content:

Html Result:
<h2>Greetings</h2>
<div class="container">
  <div class="inner">
    <p>Test</p>
    Hello
  </div>
  <div class="inner">
    <p>Test</p>
    Goodbye
  </div>
</div>
0
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