Guest User

Untitled

a guest
Jan 9th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Demo of Protecting Javascript Code From Copying</title>
  6.  
  7. <!-- jQuery Library 1.8.3 -->
  8. <script type="text/javascript" src="js/jquery/jquery.min.183.js"></script>
  9.  
  10. <script type="text/javascript">
  11. $(window).load(function() {
  12. $.ajax({
  13. url: 'js/js.php',
  14. type:'POST',
  15. cache: false,
  16. success: function(data){
  17. if(data){
  18. $('body').append(data);
  19. }
  20. }
  21. });
  22. })
  23. </script>
  24. </head>
  25.  
  26. <body>
  27. Demo of Protecting Javascript Code From Copying.
  28. </body>
  29. </html>
Add Comment
Please, Sign In to add comment