Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import $ from 'jquery';
  2.  
  3. global.jQuery = $;
  4. global.$ = $;
  5.  
  6. $(document).ready(function(){
  7. $('body').append("<div class = 'header'><strong> Who are You? </strong></div><br>");
  8. $('body').append("<button class = 'btn'> <span class='btn-text'>Hello</span> </button>")
  9. $('button').click(function(){
  10. $('body').append("<div class= 'footer'>We are Staselki</div>");
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement