say i have this url in my hand as a string, stored in a variable:http://img.youtube.com/vi/wgGh9RmO5vA/default.jpgi can copy and paste it to my browser manually and see a thumbnail.but how can i automatically open up a browser window and i see the thumbnail? without manually copying and pasting, i want to automaticallly open a broswer window with this string
I have a variable that I obtain from a php code. This variable contains a link such as http://.......with this variable, say $a, once I obtain it with that php code, I want a browser window to open automatically.I dont know javascript.
I am looking to have a link open a closeable window that is contained within a browser window. If you click on the "sizing charts" link on this website, this is exactly what I am looking to do:
[URL]
The window is contained within the current browser window, it can be dragged around, but not outside the parameters of the browser window.
I want to open a new browser window using javascript. I don't want to display URL in the dialogue. Here is my code. Code: var windowFeatures = "top=100,left=100,scrollbars=yes,resizable=no,menubar=no,location=no,directories=no,titlebar=no"; var windowObjectReference = window.open(resourceURL,"_blank",windowFeatures); The new dialogue shows the URL but doesn't allow to modify it. Is there any way to completely hide the url? Although I have specified resizable=no browser allows me to resize the window. I am using firefox.
My current project has me working with UI dialog and I was wondering if it's possible to open a new browser window from a click of the dialog button. I have set up an ajax call to get the url but I'm not sure if this is the correct way.
function createNewProject(irb_id){ jQuery.ui.dialog.defaults.bgiframe = true; jQuery(function(){ jQuery('#confirmDialog').dialog({
I have a HTML and I am opening another link in a separate window using window.open() . The child window is something like 'http://yahoo.com' which is out side html. I need to refresh the parent window when the child window is closed.
I have a popup window which has the search form in. What I want to do is for the popup window to close once the form is submitted, and to post the form data to a page on the main window.
Is anyone able to advise. As the main page is dynamic, it is not possible to give the page a name.
I'm new to Java Script and I'm having trouble getting something done. What I'm trying to do is have a confirm box open when the user closes the web page that asks a question. If the user clicks cancel, then the page stays closed. On the other hand, if the user clicks OK, then a page opens. The problem is, I have no problem getting it to work if the user "unloads" the page by using a link to another site, but I don't know if it is possible to use java script to re-open the browser, and then open it to a specific page if the user unloads the page by closing the browser.
My logic says it's not possible. Java script works in the browser, so how can it do anything once the browser has been closed? Am I right? If not, can you show me how to edit the code to make it work? Here's what I have so far:
I have a question about opening new pages when a link is clicked on a webpage. What I want to happen is this:
On the main webpage, I would like to have links to other websites. For example:
Link 1 Link 2 Link 3
Now, if I was to click links 1,2 and 3, I would have 4 browser windows open: The window containing the original webpage, plus the 3 windows that were opened by clicking on the 3 links. (I am using a href="www.,,,,," target="_blank"></A>)
Now, what I want to happen is this, I only want the mainpage to have ONE child window so that at any given time, there will be at most 2 browser windows open, the main page window and one child that is opened by clicking on a link. If I click on Link 1 followed immediately by Link 2, I don't want 2 child windows to pop up. What I need to happen is when I click Link 1, it needs to open a window. When I click link 2, the browser window that contains the webpage from link 1 now needs to show the webpage that from link 2. Is there a way to do this using javascript window.open? Code:
I understand how it works, however, when pressing the open button to open the file, I'm getting a javascript error that says "Access Denied". Does anyone know how I can make it possible for a user to select a file and open it from my webpage? This would work great if it actually worked! Any ideas?
code to show ( overlay / modal window ) to the user when closing or navigating away from the page ( i want put in this window facebook share to make the user to share the page in his facebook ) , bytheway i wanna use it in my wordpress in every post could it be happen ?
I have a site where one of the links I have set up to open a pop up window which will display Terms & Agreement information, at the bottom there is a check box and a submit button for users to click on if they agree to the terms. I was able to get that working but the thing is when the user clicks in the check box and hits submit I want them to be directed to a page which has a form on it but I wanted the page to open in the original (Parent) window. This is where I am lost cause I found some coding which will open the page with the form in the pop up window but Ideally once they agree to terms and hit submit I'd like the pop up window to disappear and the new page open in the Parent window... is this possible below is the coding I'm using.
Here is the form:
<form method="get" action="this is where my link will go" onsubmit="return yes_no(this.form) " name="Agree"> <INPUT name="agree" name="agree" value="agree" type="checkbox"> I agree to terms <input type="submit" name="submit" value="Accept Terms">
I want the window to be the exact size of the image so I set the width and height of the window the same as the width & height of the image.
The code works, however there is a white border on the top and left side of the image. If I add 20 to the width and height of the window then there is a white border around the whole image.
Is there anyway to have the window the exact size of the image, without this white border? I know there is probably a simple solution, but I'm a beginner at JavaScript.
I have a form on a page and when the form is submitted it should open a new window and post the content to it.
When the script being posted to is a html page, then this works fine, but when the script being posted to produces an svg graphic, then there is no 'view source'. Its almost as though the opened page headers are already set for html and doesn't like the svg xml schema.
I'm pretty poor at Javascript, but does anyone have any ideas on how I can get a new browser window to open behind the current window when it is opened.
I am trying to find out how to position an opening window in Internet Explorer.
While in Netscape/Mozilla/Firefox exist the options screenX and screenY for the open method of the window object, I couldn't find anything similar in IE.
How do I open a window from within a .js file?I want to do this, below in a .js file like I would in a html file. <a href="google.co.uk" class="thickbox"></a>