Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Demo of Protecting Javascript Code From Copying</title>
- <!-- jQuery Library 1.8.3 -->
- <script type="text/javascript" src="js/jquery/jquery.min.183.js"></script>
- <script type="text/javascript">
- $(window).load(function() {
- $.ajax({
- url: 'js/js.php',
- type:'POST',
- cache: false,
- success: function(data){
- if(data){
- $('body').append(data);
- }
- }
- });
- })
- </script>
- </head>
- <body>
- Demo of Protecting Javascript Code From Copying.
- </body>
- </html>
Add Comment
Please, Sign In to add comment