Adblock breaks this site

Javascript Problem

Discussion in 'Web Programming' started by Jdhp_Admin, Jun 29, 2007.

  1. Jdhp_Admin

    Jdhp_Admin Guest

    Referrals:
    0
    Javascript Problem

    i started to get a wierd error. it gave me an invalid argument error in a place where there was no code. it used to work then POOF it started erroring.

    the JS Script:

    Code:
    <script language="JavaScript">
    function newWindow(mypage,myname,w,h,features) {
    if(screen.width){
    var winl = (screen.width-w)/2;
    var wint = (screen.height-h)/2;
    }else{winl = 0;wint =0;}
    if (winl < 0) winl = 0;
    if (wint < 0) wint = 0;
    var settings = 'height=' + h + ',';
    settings += 'width=' + w + ',';
    settings += 'top=' + wint + ',';
    settings += 'left=' + winl + ',';
    settings += features;
    win = window.open(mypage,myname,settings);
    win.window.focus();
    }
    </script>
    The Call Procedure:
    Code:
    <a href="javascript:newWindow('My URL Here','The Window Name',600,550,'scrollbars=1,resizable=1')">
     
  2. dberg20

    dberg20 Guest

    Referrals:
    0
    Javascript Problem

    The code looks sloppy but it should work fine and I don't see any parsing errors, it is possible there was a conflicting code you may have placed if it randomly started bugging.
     
  3. fahlyn

    fahlyn Guest

    Referrals:
    0
    Javascript Problem

    Did you get a resolution to your issue?
     
< Need a simple installation | HTML/VBScript Questions... >


 
 
Adblock breaks this site