0
votes
4answers
98 views
Javascript Window.open Issue IE7 / IE8
Hi,
I have created a simple JQuery script that loops through an array of urls and opens multiple windows.
This is working fine on the majority of platforms.
However, in IE7 and IE8 on a client's …
0
votes
1answer
63 views
window.open broken on FireFox with Google Toolbar installed
Just now I started having problems with a site I'm working on. The problem occurs when opening a window with a simple window.open.
var popup = window.open("picture.php?id="+id, "gallerypicture",
…
-1
votes
2answers
41 views
Javascript: Open 1+ links (that dont have content)
HI,
This makes no sense, but for example if i downloaded a file to your /Downloads folder and i wanted to run file:///.../Downloads/myfile1.txt i could just go:
window.location = …
0
votes
0answers
132 views
Internet Explorer calling window.onbeforeunload on window.open and AJAX calls
Ok, I have spent a while on this problem and this is what I have gathered:
If you make an AJAX call in IE7 and you have a window.onbeforeunload function specified, it calls the onbeforeunload …
0
votes
1answer
60 views
window.open() not playing well with anchors in Firefox 3.
The following javascript, intended to open a new window and jump to a specified anchor, works great in IE. Unfortunately, in Firefox, it opens the window, but it doesn't jump to the anchor.
I've been …
1
vote
2answers
191 views
Opening a folder through FireFox with HTML
Hello:
I recently built a HTML and Javascript web application that opens specific folders throughout a network of accessible drives. This app works well when it is rendered in IE; however, the …
-1
votes
2answers
14 views
“Diagnostics Results” is an invalid value for the window title in window.open function
Did you know?
"Diagnostics Results" is an invalid value for the window title in window.open function
wtf?
0
votes
4answers
363 views
Saving a child window saves the parent window instead (Javascript)
Hello All,
I have a bit of Javascript code that creates a "save friendly" version of a webpage.
child = window.open("","child");
child.document.write(htmlPage);
"htmlPage" is the basic …
0
votes
1answer
344 views
Menu bar not displayed on window.open for Mozilla Firefox
When I run the JavaScript code below in Mozilla Firefox, the menu bar does not show:
window.open(location.pathname + "?print=print",
"print-window",
…
1
vote
4answers
589 views
Open new browser window on click of a form button
I want to open a new browser and load a page from the file system (which will be created on clicking that button). My app is a java servlet. Basically I am allowing users to change some HTML on their …
0
votes
1answer
71 views
Javascript opening maximized window when unintended
Hey. The following line was opening a 490x610 window, but after modifying some other code, it started to open up the full page new window. Any ideas as to why?
<a href="cart_display.php"
…
2
votes
3answers
166 views
What’s going wrong with window.open here?
I'm encoding the parameters in a url and setting the href of an a tag as follows:
href="javascript:var …
