Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  4.         <script>
  5.             $(function(){
  6.                 $('#test').mouseover(function(){
  7.                     alert("</script>");
  8.                    $(this).innerHtml = "test*<script>alert('mouse over fired!');</script>*test";
  9.                 });
  10.             });
  11.         </script>
  12.     </head>
  13.     <body>
  14.         <div id="test">This is a test!</div>
  15.     </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement