creating dynamic button - Javascript jQuery

Javascript examples for jQuery:Form Button

Description

creating dynamic button

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(){/*  w ww .  j a  va  2s.  c om*/
var shoplink=$("<button></button>")
.prop("id","aa")
.text("view more")
.val("view more")
.css({ "width": "20px", "height": "20px" });
$("body").append(shoplink);
    });

      </script> 
 </head> 
 <body>  
 </body>
</html>

Related Tutorials