Guest User

Untitled

a guest
Apr 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title>Link Style Test</title>
  6. <style>
  7.     body{
  8.         color:red;
  9.     }
  10.     a:link{ color:c00; text-decoration:none; }
  11.     a:visited{ color:c00; text-decoration:none; }
  12.     a:hover{ color:666; text-decoration:underline; }
  13.     a:active{ color:c00; text-decoration:none; }
  14.     divtest{
  15.         font-family:Courier, monospace;
  16.         position:absolute;
  17.         top:10px;left:10px;
  18.         width:400px;
  19.         height:300px;
  20.         overflow:hidden;
  21.         background-color:#ddd;
  22.     }
  23. </style>
  24. </head>
  25.  
  26. <body>
  27. <div id="divtest"></div>
  28.  
  29. <script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
  30. <script type="text/javascript">
  31. function tick(){
  32.     $('#divtest').html($('#divtest').html() + "<a href='#'>a link</a> not a link ");
  33.    
  34.     setTimeout(tick, 50);
  35. }
  36. tick();
  37. </script>
  38. </body>
  39. </html>
Add Comment
Please, Sign In to add comment