Adding a button with jquery's insertAfter - Javascript jQuery

Javascript examples for jQuery:Form Button

Description

Adding a button with jquery's insertAfter

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*www.jav  a2s.  c  o m*/
 $(".cwButton").insertAfter("#contents-table");
    });

      </script> 
 </head> 
 <body> 
  <button class="cwButton" onclick="btnClick()">QUIZ!</button> 
  <div id="contents-table">
    div 
  </div>  
 </body>
</html>

Related Tutorials