Create tag + text + class - Javascript jQuery

Javascript examples for jQuery:Text

Description

Create tag + text + class

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(){/*from  w  w  w .ja  v a2s  .c o m*/
var button_var = $('<button/>',
       {
           text: 'Click',
           class: 'btn_class'
       });
$('body').append(button_var);
    });

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

Related Tutorials