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

Untitled

By: a guest on Apr 30th, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 12  |  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. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <script LANGUAGE="JavaScript" TYPE="text/javascript">
  5.     function openWindow(){
  6.         WREF = window.open("page2.htm","test2",'width=550,height=650');
  7.         if(!WREF.opener){ WREF.opener = this.window; }
  8.     }
  9.     function getValue(val){
  10.         newVal = 5 * val;
  11.         return newVal;
  12.     }
  13. </script>
  14. </head>
  15. <body>
  16.         <a HREF="javascript:void(0);" onClick="openWindow();">Open the window</a>
  17. </body>
  18. </html>