WEB Site Opens An Application Window And Then, From Its Original Window It Navigates To A Status Page?
May 11, 2011
My WEB site opens an application window and then, from its original window it navigates to a status page.
Code:
var newWindow
function popUpApplication() {
[code]...
View 5 Replies
ADVERTISEMENT
Aug 11, 2011
I am trying to usw window.open , upload a file in the child window and then referesh the parent window. But once upload is done, window . opener .location.href or opener.location.replace sends a message back but I get a pop up blocker, so if I turn pop up blocker off, it opens in new page. I just want the parent page to refresh on the same window. This works on some employees stations but not on others..I don't know if there are any settings on IE that need to change, I tried everything...weird. does any one done this before?
View 1 Replies
View Related
Mar 29, 2011
It is possible to perform a find in page search that looks at a specific link, opens the page in a new window and finds the text within that document?? Basically I regularly use an html page in work that has a list of people and their telephone numbers. I want to be able to type in a searchbox on my main page and it open the target page and find the name I am looking for? Is this possible or can you only Find In Page on the same page or another frame?
View 1 Replies
View Related
Jul 20, 2005
I am trying to create a new window from which the original page can close that new window. For some reason the following code will not work. Passing the window.open command to a variable called myWindow does not work with the mouse event, but it seems to work fine with a javascript: URL command. I would prefer to do it with the mouse event. Code:
View 2 Replies
View Related
Apr 10, 2010
I need to run window.open() via href (not via onclick) as the CMS I'm working on only allows setting the href, not the whole <a> tag. I'm doing this: <a href="javascript: window.open('myUrl.php');">click this</a> and the window pops up just fine but the originating page changes to blank with '[object Window]' in it. How can I prevent the originating page from changing URL (by adding something to the javascript call)? Like "return void;" or something - but of course that didn't work...
View 2 Replies
View Related
Jun 5, 2009
i have a form, and for the user to upload a file, i use window.open with my upload script. however, after the file is uploaded, i want the filename to be put back on the original page in an input text field. how would i go about doing this?
View 1 Replies
View Related
Jul 20, 2005
I'm using window.open and as soon as I click on the link to open the new window, my original page content is replaced with '[object]'.
<
href="javascript:onClick=window.open('leaving.htm','','t oolbar=no,location=no,status=no,menubar=no,scrollb ars=no,resizable=no,width=300,height=400')">Lin
1 </a>
Any ideas ...
View 1 Replies
View Related
Jul 3, 2007
I need a script to open a popup window which contains a php form.
after the form has been submitted or cancelled i need to go back to
the originated page (php also) and reload original page.
do you guys have any simple solutions?
View 1 Replies
View Related
Feb 5, 2011
I'm using the greatInline Modal Window w/ CSS and jQuery from [url] and it's working great. Now I want use it with an form in it:action="?" method="post"
When form is send the popup is closed, how can I prevent this? I think that happens because the whole page is send. Can I set an extra parameter so the popup opens when the page is reloaded?
View 2 Replies
View Related
Apr 12, 2010
open to a new window in the original window. the original window is blocked from any user inputs. a good example is here at [URL] and click on "locations" button. is there a special name for this window.open?
View 2 Replies
View Related
Sep 23, 2010
I need to open a popup window from a PHP site and pass in some parameters to use in the pop up window. I have the params in an input box and need to get the val of the box into a param and pass it to the new popup window. All pages are local and in the same folder. The id of the input box is 'ddutykey'. The name of the new window would be showduty.php if possible.
View 3 Replies
View Related
Mar 26, 2006
I've seen sites that do this and was wondering if anybody could has the code to do it.
View 5 Replies
View Related
Jul 13, 2007
function gotoshow(){
if (!window.winslide||winslide.closed)
winslide=window.open(slidelinks[whichlink])
else
winslide.location=slidelinks[whichlink]
winslide.focus()
}
I need to change this function to DO NOT open "slidelinks" in new window, but in same window as the image witch uses this function.
View 2 Replies
View Related
Nov 20, 2003
I have a webpage with a link that produces a popup using javascript. I have another link in the popup. When the popup link is clicked I want only the original window to change location, while the popup remains the same. How can this be done?
View 6 Replies
View Related
Jul 23, 2005
From a web page, I am opening a window from my javascript function
"openMyWindow()". After finishing work in that window i want to execute
another javascript function on the web page "finishMyWindow()". My question
is how can I call this function from my window? I tried using
parent.finishMyWindow() but it did not work.
View 2 Replies
View Related
May 14, 2009
I have the following html code, that is an input Button and onclick runs the javascript function EnquiriesReport().
<input type="Button" name="Enquiries" value=".Enquiries" onClick="EnquiriesReport()" class="formsubmitTwo">
Here is the javascript code for the EnquiriesReport() function:
function EnquiriesReport()
{
if( ValidateData()) {
form1.action="EnquiriesReport.asp?"
form1.submit();
}
}
My question is how can I run the EnquiriesReport() function so that the "EnquiriesReport.asp?" opens in a new window?
View 1 Replies
View Related
Jul 28, 2011
I have found a script for opening all linked images of one page in a new window and displaying all images in full size inline. It works so far, however:
I want the images to be displays in the current window i am in instead of opening a new window.
Here is the code:
Code:
javascript:(function(){function%20I(u){var%20t=u.split('.'),e=t[t.length-1].toLowerCase();return%20{gif:1,jpg:1,jpeg:1,png:1,mng:1}[e]}function%20hE(s){return%20s.replace(/&/g,'&').replace(/>/g,'>').replace(/</g,'<').replace(/"
[Code]....
View 3 Replies
View Related
May 5, 2009
Is it possible to make my application always open in a new window even if IE 7 tabbed setting is set to Open links in a new tab in the current window.Always open pop-ups in a new tab.I am using the following command to open my application in new window
NewWin=window.open('my_http','_blank','toolbar=no,resizable=no,width=1150,height=810')
Which works fine as long as users dont set their IE7 tabbed setting to always open pop-ups in a new tab.
View 2 Replies
View Related
Jun 30, 2010
Anyone know how to create this in JS? User clicks on a link, the link opens a new window with new webpage AND the page that had the link then changes to a new webpage as well. So end the end that link takes the user to two new pages. For instance, I am on PageA.html and I click an <a href="">Link</a>. Link take me to a newly targeted page called PageB.html. Then at the same time PageA.html turns into PageC.html.
View 1 Replies
View Related
Sep 29, 2010
I am developing an application that is opened via a modal popup from another application that I do not have control over. In IE, the method of creating the popup that holds my application is window.showModalDialog. When I redirect the user via javascript with something as simple as, location.href='someURL'; another popup window is opened rather than just redirecting the browser. When a user is using anything other than IE, the window.open method is used and those browsers redirect within the same window appropriately.
[Code]...
View 2 Replies
View Related
Jul 17, 2004
im new to javascript really because im mainly PHP and MySQL, however i need something.
At the bottom of a browser, you have a window status right? Well, when i move over links on my website, the status at the bottom changes to the destination of that link. Like
http://www.mydomain.com/somepage.php
How can i do a mouse over event, so when someone moves over the link, the status changes to "The login page" or "Register here", etc, to replace the destination URL.
View 4 Replies
View Related
Apr 22, 2009
Ive got a script which will enable an entire div to be clickable, however when I click on the div it opens the URL twice..
The code is:
View 1 Replies
View Related
Jul 17, 2006
I really dislike the look of (javascript-)links in the statusbar and I can't integrate "onmouseover="window.status='...'return true;" in all of the links, cause I'm going to use this (http://www.dynamicdrive.com/dynamicindex1/hvmenu/) menu.
So, is there any solution for my problem?
View 4 Replies
View Related
Jun 13, 2005
I have a inline javascript function in my jsp.
HTML Code:
onmouseover="window.status='Registered Content - File System Jobs'return true;"
onmouseout="window.status=''return true;"
But this doen't work in netscape? Do I need to use anything else to make it work in netscape?
View 8 Replies
View Related
Jan 19, 2010
just having trouble opening a window with no status bar or location (address bar)
I have tried several different things but it seems to not want to let me prevent the status bar from showing up
Code:
<html>
<head>
<script type="text/javascript">
function open_win()
[Code]....
View 1 Replies
View Related
Jul 20, 2005
I want to use some javascript to launch a windows application (this used on
intranet) but don't know how. It'd be neat if I could not only launch the application but minimize the webpage's browser at the same time, but this is just icing on the cake.
View 7 Replies
View Related