Javascript examples for jQuery:Text
Create tag + text + class
<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>