Javascript's definitely not my strong point. This page I'm looking at has a "Secure" login button which makes a javascript call to open a new window containing the login fields. Example of javascript call: I found the site that this calls in the source, everything was all cool. Lets say for instance the openNewWindow function calls: Is there any way to change the variable 'Apprise' to something else externally? I've been wracking my brain over this for the last week. I want to set 'Apprise=no' cause it causes huge problems when it opens up full screen on a bunch of computers in our lab.
Hi tin2mon, If you know the name of the function which is calling this script, you can easily change it. Assuming the function name is "openNewWindow", then type the following in your address bar and you should be fine: JavaScript: function openNewWindow() { window.open("/Applogin.asp?Apprise=no", "Applogin", features); } void 0 This line of code will change the javascript to give the parameter "Apprise" the value "no". If you don't want the window to open at all, you could just write: JavaScript: function openNewWindow() { } void 0