Command Flips Parent Page...

Jul 23, 2005

i popup a new window in my submit command and return false;

but my parent still flips the page ! how can i stop it ?

View 2 Replies


ADVERTISEMENT

Send Refresh Command From Pop-up To Parent Frame?

Feb 25, 2009

I want to send a refresh command from my pop-up screen to a i frame in the parent document.

I have written the following script code...

View 4 Replies View Related

Make A Ebook That Flips?

Feb 22, 2011

Does anyone know how to make a ebook that flips?

View 1 Replies View Related

What Is URL Command That Displays Source Instead Of Page?

Jul 23, 2005

There's some command I forgot that you can type into the
address field of a web browser that will cause it to
display the source code for that page instead of
the page itself. Can anyone tell me what it is?
It's something like:

viewsource:http://mysite.com
or
view:http://mysite.com
or
source:http://mysite.com

except I don't quite have it correct.

View 1 Replies View Related

Cannot Get Page To Open Onload Command

Dec 7, 2009

I am having issues trying to get the javascript to load when I load the page. I had it before and lost the file now I can't seem to get it again. Here is my code.
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "[URL]">
<html>
<head>
<title>Wheeler Insurance - Customer Survey</title>
</head>
<body onload="java script:View Survey();">
<p><p>
<script language="javascript" type="text/javascript"><!--
var PDF_surveyID = '095504C919339503'; .....

View 2 Replies View Related

Print Command Printing Only One Page

Oct 4, 2007

I'm not very good with coding and this seems like a very basic issue. I have a resume page that opens up in a new window. I made a button on the resume page that fires up the print command window when clicked using this code:
javascript:window.print()
It works fine except it only prints the first page. How I can get it to print all the pages?

View 5 Replies View Related

Pop Up Window Will Not Obey A Close Command From Original Page.

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

Menu Table With Gradient Effects And Flips To Color

Aug 24, 2010

I have this menu table that has a gradient effect and flips to a different color when mouse is over a cell of the table. It is working great for google chrome, the problem is it is not working for Internet Explorer, but it should work for internet explorer, firefox, chrome,and so on.. The code I got it from is: [URL]. The first cell should be black and grey then when I put move over it should change to grey baby blue.

HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]">
<html xmlns="[URL]"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head><body><style type="text/css">

#coolmenu{
border: 1px #9CF;
width: 140px;
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#000));
background: -moz-linear-gradient(top, #ccc, #000);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000');
background: #999; /* for non-css3 browsers */ .....

View 1 Replies View Related

Document.write Command To Dynamically Cretae A New Html Page

Jul 20, 2005

When using the document.write command to dynamically cretae a new html
page .. how should I use the "" charcters.

e.g. for font size="2"

As the attributes appear within " "for the purposes of the documnet.write
bit ...it just gives me errors.?

View 4 Replies View Related

JQuery :: Triggering Click Event On Parent Page From A Page Being Loaded Via .html()

Jun 9, 2010

I am working on a page that will load in other pages using AJAX and the .html method. Something like this :

<span id = "edit">Edit</span>
<div id = "cont">
</div>
//the click edit script

[Code]....

Unfortunately this does not seem to work, entirely. It does trigger the click event but it messes up the post for some reason. I have played around with it for the last 45 minutes or so and it seems like the click event trigger is what is messing things up, if I comment it out it works fine. Could anyone tell me why they think this is? note this is an over simplified version of my actual code, but the structure is the same.

View 2 Replies View Related

Make Whole Page Send The User After Some Seconds To Another Page And Not Only The Iframe And Parent Location?

Jan 10, 2011

I have an webbpage, and in the middle of it there is an iframe to a php site. So i have used this code, so after some seconds the iframe will send the guest to another page. <meta http-equiv="refresh" traget="_top" content="5 url=http://mypage.com"/> But the thing is that i want the WHOLE page to reload, and go to that page after 5 seconds (we can say). With that code, only the iframe are going to another page. Is it possible to make the whole page send the user after some seconds, to another page and not only the iframe?

View 1 Replies View Related

Accessvariables In An Iframe Src Page From Parent Page - Or Vice Versa

Aug 29, 2011

Is it possible to access javascript variables in an iframe src page from the parent page, or vice versa. How do you do this? What about the DOM?

View 1 Replies View Related

JQuery :: Test If Html Page Has Parent Page?

Apr 20, 2010

How to test if a html page has a parent page?Let me explain: I use the (great) Colorbox plugin and I like to apply jquery functions only if a page is in an Colorbox iframe.So, basically, I'd like to know how to determine with jQuery if a page has a parent page (= is in a Colorbox iframe).

View 2 Replies View Related

Pass Value From Child Page To Parent Page?

Sep 26, 2011

I have parent page http://localhost/pc/rep/pc.php after the user enter the customer data, the user will press button to print it

then, call child page via window.open jar:http://localhost/pc/rep/my-ca/script.jar!/test.html

as you can see, they are belong to the same domain.

The user will select the lables that the program will printed, and the numbers of each one.

I don't know, how can I pass the data from child to parents.

parent.opener.document.forms.item(4).txtClaimTicket.value = 1;
[permission denied for <http://localhost> to get property window.document from <http://localhost>

View 5 Replies View Related

Form Fields In IFrame Page - Parent Page Get The Form Data Entered?

Oct 14, 2011

I have form input fields but it is being called through iFrame by the page. But how do I get or pass the data entered into the parent page.

[Code]...

View 1 Replies View Related

Refresh The Parent Page?

Jun 1, 2011

I have the following script that refreshes the page that opened the pop up window, after the pop up window is closed.

if(window.opener && !window.opener.closed)
{
window.opener.location.reload(true);
}
window.close();

It is working fine in IE but it's not refreshing the parent page in FireFox.

View 2 Replies View Related

Refresh Parent Page

Jun 13, 2006

I'm unsure if this is a php or javascript problem as I am new to javacript...

I am using a javascript:popup('page.php') command to open a popup box and allow the user to make a few changes to a mysql database. However the values that are changed are displayed on the parent page (the one that the user clicks the popup link on).

Is there a way to refresh the parent page from the popup, so when they submit the form in the popup the parent automatically refreshes with the new values (rather than the user having to manually refresh the page)?

View 2 Replies View Related

Trigger Function On Parent Page?

Jan 9, 2010

Is it possible to trigger a function in a parent page from a window spawned from that page?

View 3 Replies View Related

IFrame Not Talking To Parent Page

Sep 6, 2009

I'm working on a upload script that uses javascript, and a hidden iframe to upload the files. It all works up until the iframe finishes and needs to send the javascript function call back to the parent page, nothing happens, when it should hide the upload progress bar. I've searched and searched for the answer, along with trying different alternative to window.top.window, such as window.top, parent, and parent.document and so far nothing has worked, I've even tried the onLoad on the iframe with no success.

Parent Page function:
function stopUpload(success, ups, file){
var result = '';
var uploaded = '0';
if (success == 1){
result = '<span class="msg">The file was uploaded successfully!</span><br>';
uploaded = uploaded ++;
if (uploaded == document.getElementById('numflowers').value){
document.getElementById(finish).style.display = 'block'; .....
}}
else if (success == 2){
result = '<span class="msg">There was an error during file upload! The file has a size of 0</span><br> File: <input name="ufile[]" id="ufile[]" type="file" size="30"> <input type="submit" name="submitBtn" value="Upload">';
}else if (success == 3){
result = '<span class="msg"> We only allow .png, .jpg, .gif, .zip, .rar, and .7z files to be uploaded. If you think we should allow other please make a suggestion on the forums.</span><br> File: <input name="ufile[]" id="ufile[]" type="file" size="30"> <input type="submit" name="submitBtn" value="Upload">';
}
var uploadp = "upload_process" + ups;
var uploadf = "upload_form" + ups;
document.getElementById('uploadp').style.display = 'none';
document.getElementById('uploadf').innerHTML = 'result';
document.getElementById('uploadf').style.display = 'block';
}
Function call inside iframe (example)
window.top.window.stopUpload(3, 1, test.txt)

View 9 Replies View Related

Want To The Parent Window To Load As A New Page?

Oct 31, 2010

This is what I would like to have happen. Upon clicking an image (button) I would like a new window to open and I also want to the parent window to load as a new page. I've been searching around and found some code. I implemented it and got the new window to open, but the parent window does not change. Here's what I have:

<script language="JavaScript"><!--
function newWindow(file,window) {
msgWindow=open(file,window,'resizable=no,width=1500,height=1000');

[code]....

View 2 Replies View Related

Popup Page To Navigate Parent?

Dec 6, 2009

How can I use a pop-up page to navigate the parent page?

For instance, on my homepage, I have something like "Click here to choose your location". This should open up a page, with a list of option that I can choose to navigate the homepage!

View 1 Replies View Related

_blank Page Open Parent?

Jan 19, 2010

I have a page that open a new window witn _blank target.At this page I want to reload the parent window or even better to reload a div with ajax.I tried this window.opener.reload() but did not work.

View 1 Replies View Related

How To Refer To The Original Parent Page

Nov 23, 2004

I have a regular html page called a.html
this page opens a modal dialog window called modal1.html
modal1.html contains a 'Next' button.
when the button is pressed the modal1.html is replaced with modal2.html

modal2.html contains another button.
when its button is pressed, the modal dialog window should close and the location of the original page a.html should change.
I am trying to do something like:

//window.parent.location.href = 'anotherPage.html'
window.opener.location.href = 'anotherPage.html'
window.close();

I cannot use window.opener in modal2.html because its opener is actually modal1.html.
In fact anotherPage.html is opened in a whole new browser page

How can I refer to a.html in this chain?

View 6 Replies View Related

Reload The ASP.NET Page In The Parent Window?

Dec 29, 2010

I am trying to reload the ASP.NET page in the parent window from a javascript in a submodal window. Now I don't want a straight reload as in window.top.location.reload() because the page was previously posted back and thus a warning will be displayed by the browser. I also tried window.top.location.href=window.top.location.href, but that doesn't seem to load a fresh copy of the page. Does it make a difference that the page in the parent window is AJAX enabled and the script that launched the submodal is in an UpdatePanel?

View 7 Replies View Related

Passing A Value From An Iframe To The Parent Page

Mar 12, 2011

I'm new to JavaScript and i have hit a slight problem with a project. basically, my issue is with iFrames - in particular, passing a value from an iframe to the parent page. i am trying to find a way for to pass the url of an iframe source back to the parent. hardcoding the source, or using a form within the iframe is ok - however i want to be able to view any page on the web within the frame, and for the parent page to be bale to identify what url is being loaded within it.

View 1 Replies View Related

Refreshing A Parent Page From A Child Popup

Feb 10, 2006

I use this code in a popup to refresh the parent browser. It works fine
as long as the user actually clicks on this link but does not work in
cases where the user closes the child popup through the Windows X
(close) button. Any way to accomodate this also?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved