Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.90 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  2. <script type="text/javascript">
  3.  
  4. function runIt() {
  5.      var overlay = '<div id="u13_overlay"></div>';
  6.      var window = '<div id="u13_window"><a href="http://unit-13.org"><img src="http://cl.ly/bd7e1a523503b6832f98/content" /></a></div>'
  7.      $('#fw-container').prepend(overlay + window);
  8.      $('#u13_overlay').hide().css({
  9.           'background': 'black', 'position': 'absolute', 'width': '100%', 'height': '100%', 'zIndex': '1000000'
  10.      }).fadeIn();
  11.      $('#u13_window').hide().css({
  12.           'background': 'white', 'width': '600px', 'height': '200px', 'textAlign': 'center', 'position': 'absolute', 'top': '50%', 'left': '50%', 'marginTop': '-100px', 'marginLeft': '-300px', 'zIndex': '1000001'
  13.      }).fadeIn();
  14.  
  15. }
  16.  
  17. $('document').ready(function() {
  18.      runIt();
  19. });
  20.  
  21. </script>