It is a JavaScript method that opens a new window and loads the document specified by a given URL.
-1
votes
1answer
38 views
How to open a new window/tab without user interfaction and without getting it blocked
I've an <input type="text" /> which shows search suggestions from some data source.
The problem occurs when the user is redirected to some URL and in a new window (i.e. window.open) on [ENTER] ...
0
votes
1answer
14 views
close child after sigin and reload parent with signin data
Right now i m using window.open() when a user click and a popwindow display login form.
for this i used":
<script>
function popupwindow(url, title, w, h) {
var w = 600;
var h = 600;
...
0
votes
0answers
34 views
Hyperlink to new window (solely separated window)
In parent window I will dynamic hyperlink add attribute
String.Format("window.open('{0}','mywindow','_blank',", url)
something like that.
And so when user click on the hyperlink, it will open the ...
0
votes
1answer
23 views
Opera stops loading my page after jquery is loaded
I've looked and looked, but I cannot seem to find a similar situation to mine. I'm using javascript to open a new window and then post information from said window. My problem is that I am trying to ...
0
votes
0answers
22 views
myWindow (window.open) titlebar was hidden in modern browsers
Hi,
How can I make titlebar appears beside the address bar in modern browsers with window.open function.
It appears already on IE8.
my code:
var myWindow = window.open('home.html?' + ...
0
votes
1answer
20 views
Querystring truncated with window.open()?
I want to open a popup window for a printview and I have to pass the object id as get-parameter.
var w = window.open('http://example.com/print/?id=42');
But JavaScript cuts the querystring at this ...
0
votes
1answer
72 views
appendChild not working with window.open in IE
I have a page with an svg tag. The page has a button called "Preview" which on clicking should open a new window with the image (svg).
Below is a piece of code which works in Chrome/Firefox but not ...
0
votes
2answers
27 views
How to use BB Webworks childBrowser in a Phonegap app
I am running into an issue with doing oAuth with Twitter/Facebook using childBrowser on Phonegap and BB10. I have this working perfectly on iOS/Android.
Per the Phonegap 2.7.0 docs, window.open() and ...
0
votes
1answer
34 views
Change browser size using C#
Can I change the browser width from C#?
I want to do something similar to this:
var window = window.open("page.html");
window.resize(100,100);
but in C#, something like this:
Process p = ...
0
votes
0answers
24 views
window.open workaround for new page onload of website
From what I am reading online, window.open is treated or handled as a popup on iPhone. On most iPhones, Safari settings are set to block popups by default. Therefore, once a webpage is ready or loaded ...
0
votes
2answers
35 views
How to add DOCTYPE to new JavaScript-generated window?
I'm generating new a window with JavaScript using window.open and putting some content in it.
How can i declare the <!DOCTYPE>?
0
votes
0answers
31 views
Using window.open to open a UNC path in chrome?
I have a unc path like this:
\\fs7600\datadirectory
I'm trying to open it from my jQUery via window.open if the user clicks a button. If I enter this in to the address bar in chrome directly, it ...
1
vote
3answers
158 views
iframes within iframes in Google Chrome windows won't open links with target=“_blank”
I have a page containing many iframes. These iframes have iframes within them that have links with target="_blank". When I click on them, they do nothing. How can I get these links to open?
0
votes
0answers
105 views
Changing window.open to window.showModalDialog. then got this error: 'window.top.opener.parent is null or not an object'
I'm having a problem with some java-script that opens a window(that window is a .htm file that will call a .xap file) from the main application ribbon of CRM 2011.
Earlier I use window.open and it ...
0
votes
1answer
40 views
javascript closing a window from another window overwrites calling window name
I have a website opening several new tabs/windows. On the main page of the website, there's a button 'close all', which should close all windows opened from the website. At first sight, it seems to ...
1
vote
2answers
67 views
Window.open not working in another pop up window
I have a popup window 'X' generated using javascript window.open(). When I try to open another child window 'Y' from the pop-up window 'X', i have getting a pop up window 'Y' and also the url of the ...
1
vote
1answer
39 views
How to hook into the Firefox Network Request Popup?
I want to try to improve the way the Firefox console pops up network info dialogs. I tried overlay:
overlay chrome://browser/content/NetworkPanel.xhtml ...
0
votes
1answer
91 views
window.open behaviour in chrome tabs/windows
I have a small bit of javascript intended to open two or more tabs. This works fine in FF and IE, but chrome opens the second one in a new window instead of tab. It isn't dependant on the url as I've ...
0
votes
2answers
32 views
Get window size including frame with javascript
In javascript, window.open() with width=500 height=500 open a new window with page size(the area in which the html is displayed) of 500 by 500. But the size of the whole window is larger (width and ...
0
votes
0answers
38 views
window.open in IE does not inherit parent's document domain with empty url
When I open a window in IE with an empty url (so I can write the contents later), it does not inherit the parent window's domain.
eg,
w = window.open('', windowName, windowSpecs)
...
0
votes
1answer
51 views
focus a parent window using href accesskey
I included a bank calculator tool inside a website. This calculator is opened on a new window. The problem I'm facing is that users need a shortcut to open multiple times the calculator, so I found ...
-1
votes
1answer
46 views
Why WINDOW.OPEN function works differently in Chrome as compared to firefox
I am using window.open function to open up a new window.But in chrome itopens up with an minimize button and i m able to carry out task in backend window.
However in firefox it works fine ,showing ...
1
vote
1answer
77 views
Newly opened window shows my dynamic content, but wrong location
My script opens a new window and then writes its content. The destination window displays "Hello World" as expected, but the URL is the same as the window that the script ran in and I don't understand ...
0
votes
0answers
36 views
Safari | Javascript open links in a new window
I'm trying to open a new window in safari with JavaScript.
My safari settings are set to: Open taps in a new window: automatically.
I'm not going to change the setting to "always" because not all ...
0
votes
1answer
117 views
window.open() on a multi-monitor/dual-monitor system - where does window pop up?
When using javascript window.open() on a multi-monitor system, how do you control which monitor, or where in the display space the popup opens? It seems out of control to me and otherwise random in ...
0
votes
1answer
273 views
window.open without popup blocker using AJAX and manipulating the window.location
When dealing with OAuth from the server, such as Twitter and Facebook, you most likely will redirect the user to an URL asking for app permission. Usually, after clicking a link, you send the request ...
1
vote
0answers
82 views
window.open after getting tabid in chrome extension not working
I am trying to open a new tab after getting the current tabid so that I can pass
a message from the newly opened tab to the previous one,
I am doing this:
myscr.js:
var myvar = 0;
...
1
vote
0answers
61 views
OAuth 2 Provider: client-side popup
I'm curious how OAuth 2 providers (namely Facebook and Google) implement the client-side flow inside of a popup. How does the client application receive the access token back from the popup? I was ...
0
votes
1answer
46 views
How to load a partial view in a new window?
I have an MVC partial view. I try to load it using window.open by calling the controller name and the action name. I got from the action the related partial view back but there are no links to ...
0
votes
0answers
94 views
access denied error while using window.location.reload
I have made one application that used the java script.There are various windows in my application and each window has one common icon.The functionality of that icon is to refresh the current window.
...
-1
votes
2answers
70 views
how to stop user to open a window which is already opened? [duplicate]
I am developing one website in php. and to display reports and service requests i am using another window. means from menu when user clicks on one report or service request i am opening it into new ...
0
votes
0answers
124 views
QWebview - Reopen closed window (error only occurs when using events eg. onclick)
I'm developing a basic web browser in QT5 (IDE Qt Creator 2.6.2).
If I click on a link\anchor with target:
<a target="newWindow" href="http://stackoverflow.com">Test</a>
or execute an ...
2
votes
1answer
216 views
window.open doesn't open with brower back button in Chrome
I am trying to open a link in new window using a simple window.open.
However I want the browser back button, so I give the below parameters. It works fine in all browsers except Google Chrome. I have ...
4
votes
2answers
2k views
Chrome, Javascript, window.open in new tab
Hi everyone,
In chrome..
this opens in a new tab:
<button onclick="window.open('newpage.html', '_blank')" />
this opens in a new window (but I'd like this to open in a new tab as well):
...
0
votes
0answers
113 views
Javascript window.open() not working when linking to pages within the same PDF document
I am trying to create a page that will provide links to various locations in a pdf document. I am using the window.open() method, because I want the document to display in a new browser window, and I ...
0
votes
1answer
127 views
Trying to reopen closed popup window
I can't understand what is the reason that makes these 2 scripts written in javascript behave in different ways.
Script 1
var w;
function f1() {
w = ...
0
votes
3answers
67 views
Open links in another window with javascript
Let's say I have a single HTML page and it contains hundreds of links. These links will load in the same window when anybody clicks them.
I want it to open in another window. I know that I can use ...
0
votes
0answers
194 views
Closing child windows onunload event in javascript
I am working on a project that has an onload event of
var opsWin = window.open ('url','_blank', 'options);
var preWin= window.open ('url','_blank', 'options);
var pkgWin= window.open ...
0
votes
0answers
107 views
How do you use the jQuery dropkick change callback?
I've been working on this all day and I can't seem to find the answer! What I'm trying to do is take a <select> list and have each option be linked to a website with their value using ...
0
votes
0answers
77 views
Javascript: window.open doesn't close when trying to open a word file
I am trying to open a word file using below code:
var settings='width='+ w + ',height='+ h +', menubar=no,toolbar=no,status=no,scrollbars=no,resizable=yes,left='+ left + ',top=' + top + ',screenX=' + ...
0
votes
1answer
42 views
run window.open() in js performs different in chrome
We are developing a web application with javascript, we use chrome as our default browser for our users.
Now we met a problem when we use window.open in our application.
In our application, we need ...
0
votes
2answers
413 views
open a page in new tab and load different URL in old window
I am submitting a form using in action=abc.pl and abc.pl contains the code for opening the new tab and loading different URL on the same page. Here is the code how I am doing (in abc.pl)
...
1
vote
1answer
209 views
window.open width ignored in Chrome
I want to create a popup of a fixed size, however the width attribute is ignored in Chrome. But Works fine in FF.
Here's my code:
window.open('','','width=300');
The resultant popup is larger than ...
0
votes
2answers
101 views
jQuery Multi Window Access and Handlers
I'm working on a web application that relies on jQuery quite a bit. I have a select that is structured like:
<select id='task_id'>
<option value=''>Select</option>
...
0
votes
0answers
96 views
Window open with JavaScript for Google Adsense banner
I want to code so the window open with Javascript for Google Adsense banner. But I don't know how. I show you my code:
<div id="ad">
<div>
<script ...
0
votes
1answer
664 views
window.open always opens new tab in Mobile Safari for iPad
My company is using Karamsoft's UltimateEditor to allow for rich text in textarea fields as well as the ability to spellcheck.
An issue we have run into is that on Safari for the iPad, the ...
0
votes
0answers
49 views
How to load a URL and use content negotiation
I am trying to open a URL from Javascript within an HTML page and have the requirement that the GET request requires a value to be set in the Request Header. I am wondering how to achieve this.
Our ...
0
votes
0answers
23 views
window.open bg color
Ok i have a page with buttons on them, and using onClick, when user clicks on the area/button it uses window.open to open a window, on the window it has text, how do i make it so that pop up window ...
-1
votes
2answers
40 views
window.open from a window opened with window.open
i am trying to open a new window with window.open from a child window opened with window.open. But the first child closes on second window.open
0
votes
0answers
155 views
Fixed width and height in modal window with showModalDialog and window.open
This may be easy to all of you, but it is not easy for me, can you please help me to put a fixed height of 500px and a width of 400px in the following script? I need it both for showModalDialog and ...


