Insert after current

Description

The following code shows how to Insert after current element.

Example


<html>
<head>
<script type="text/javascript"
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from   www .ja  va 2  s . c  om-->
    $("button").click(function() {
      $(this).clone(true).insertAfter(this);
    });
  });
</script>
</head>
<body>
  <button>Clone Me!</button>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities