Form Submit Opening A New Window & Forwarding On Main Site.

Apr 21, 2006

I want a form that people fill in their name, email address then click a banner to submit the information to my site admin email address but as they submit using the banner, I want the site the banner is advertising to open up in a new window while the main page will go to a 'thank you' page.

Does anyone know how to do this?

So far I have this:

<form method="POST" action="http://...a php form" >
<p align="center"><span class="style6">Name</span><br>
<input type="text" name="Name">
<p align="center"><span class="style6">Email</span><br>
<input type="text" name="Email">

<p align="center"><input type="submit" name="submit" value="Submit">
<p align="center"><input type="image" src="http://..image" alt="Submit"> </form>

View 2 Replies


ADVERTISEMENT

Form Opening In The Main Window/ Simeltaneiously Closes Popup Window

Jan 8, 2004

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.

View 4 Replies View Related

JQuery :: Whenever A User Submit The Form In The #loginForm Div, The Page Refresh And The Main Div Return Invisible?

Jun 7, 2010

i've a div that contains a form, each of these elements have their own id; the structure is something like this

<div class="art-Block-body">
<div class="art-BlockHeader">
<div class="art-header-tag-icon">[code].....

I'd want that: at the first user's click on the #register div, the div #registerForm become visible, it should remains visible also when the user click the submit button within and it should disappear if the user click a second time on the #register.I partially solved my problems with this:

$(document).ready(function(){
$("#registerForm").css("display","none");
$("#register").toggle(function(){[code]....

but i can't resolve the submit issue: whenever a user submit the form in the #loginForm div, the page refresh and the main div return invisible.

View 1 Replies View Related

Page Opening In New Window After Submitting JS Form

Dec 12, 2010

I am using Javascript to display options in a form with 2 dropdown lists. However, despite using the target='_self', the result opens in a new window.

Javascript...
Code JavaScript:
// JavaScript Document
function setOptions(chosen) {

[code]...

View 3 Replies View Related

Opening New Window, With Value From Array Form Field

Oct 7, 2002

I am trying to open a window, with a url, and parameter from array form field. Here is the code:

<input type="text" name="parameter[1]" value="1223344"><input type="button" value="Check ID" + document.MainForm.parameter[1].value)">

I am getting that document.MainForm.parameter.1 is null or not an object.

How can I properly make javascript recorgenize the field?

View 2 Replies View Related

Page Result After Submitting Form Opening In New Window

Dec 13, 2010

I am using Javascript to display options in a form with 2 dropdown lists. However, despite using the target='_self', the result opens in a new window.

// JavaScript Document
function setOptions(chosen) {
var selbox = document.ChronoContact_course_finder.opttwo;

[code]....

View 2 Replies View Related

Submit The Form Data To The Popup Window Without A Submit Button

Jul 23, 2005

The following will submit the form data to popup by clicking the submit button. I want it will submit the form automatically to the popup, there is no submit button in this page. Basically this page should not show up.

<script type="text/javascript">
function submitmyform(f) {
f.target = 'foo'
window.open('',f.target,'menubar=no,scrollbars=no, width=800,height=800');
f.submit();
return false;
}
</script>

<form name="myform" action="popup.asp" target="_blank" method="post"
onsubmit="return submitmyform(this);">
<input type="hidden" name="item" value="item"/>
<input type="submit" value="submit to popup"/>
</form>

View 2 Replies View Related

Submit A Form In Popup Window To Opener Window

Oct 11, 2006

I have a form that is in a popup window. I need the form to submit to the opener window. Is is possible to do that? The opener window is the main window so it is does not have a name and there are no framesets.

<form action="something.php" method="post" target="????">
I'd like to use window.opener in the target but that's JavaScript...

I know somebody has done this before and has the code.

View 2 Replies View Related

Child Window Close Event - Opening Another Link In A Separate Window Using Window.open()

Jan 29, 2010

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.

View 4 Replies View Related

How To Submit A Form Into A New Window?

Mar 3, 2002

Basically, I have a form with two submit buttons. One is called "Save", and the other is "Preview". I want the "Save" button to submit the form using normal means (replace the current window).. but the "Preview" button must submit the form into a new window.

Can this be done? I started a thread about this in the HTML forum, and some have said it can be done via javascript, so here I am.

Can I pass the form contents (input tags, etc..) to some kind of javascript function and then have the form submit into a new window? Will I still be able to have the "Save" button NOT open a new window?

Here's the code I have right now. This basically is just two buttons that open the form into the same window. It's the Save button that I want to open up into a new window only.
:
Code:
<form name="form_name" method="post" action="http://www.domain.com/file.php">
<input type="submit" name="Save" value="Save">
<input type="submit" name="Preview" value="Preview">
</form>

View 10 Replies View Related

Window.opener.location - Set The Parent Window(main Browser)

Nov 13, 2011

I'm using window.showModalDialog but having an issue trying to set the parent window(main browser). I open modal window A which is then opens modal window B, top of modal window B onload I do window.opener.close()". My issue now is when i'm finished with B I set parent window(main browser) to a new url with window.opener.location. So my problem is modal window A the parent has been closed so window.opener.location will not work.

View 3 Replies View Related

Submit Form To Different Script & Window

Jul 23, 2005

I have a form which enables users to type in some text in a <TEXTAREA>,
allowing them to use HTML. I have defined two submit buttons - one to
submit as usual, but one which I would like to popup another window and
submit the typed text to different action/script to give a preview. Code:

View 1 Replies View Related

JQuery :: Pop Up Window After Form Submit?

Mar 18, 2010

I have an HTML page which pases some value on button click event to an API using jquery and its succesfully running.It returns true or false.i want that if its returns true a popup box should appear where i have to show some message. i dont know how to do so after getting that respose as user have already submit the form.

View 1 Replies View Related

Popup Window Where Main Window Is Maintained In Background?

Apr 8, 2011

I have the code below in my popup window which currently brings up a blank page in the background as the main window. Instead I want the popup to come up but the original page I left is in the background as the main window. Does anyone know how I can do that with the code I currently have.

<html>
<head>
<title>JavaScript Popup Example 3</title>

[code]....

View 21 Replies View Related

How To Submit Parent's Form Inside A Pop Up Window

Aug 11, 2005

I have a web page where I want the user to click a button to see a pop
up window where they can browse files on their computer to upload and
then when they click the submit button have the popup close and the
form to be submitted to the main window.

View 1 Replies View Related

Submit Form In Iframe From Parent Window

Nov 25, 2005

lets say i have a have page a with frame b, frame b has 2 forms, c and d, how would i go about making it so that i could submit form d from the parent page?

ive tried window.framename.document.formname.submit(); but it doesnt work and ive searched and havent found anything that worked either...

View 3 Replies View Related

Load A Window And Validate On Form Submit

Jun 26, 2001

I need to set up a form that once submitted opens a window thats 550x400.
The form needs to be validated first however. I used an onClick event on the submit button but that opens the window regardless whether a user filled it out or not.

View 10 Replies View Related

Form Submit Can't Sen Post Data To Greybox Window

Mar 1, 2010

i'm using greybox on my website, and using survey. i want when click submit button then post form data to opened greybox window.. but can't..

my form actions
<form action="anket.php?islem=ok" method="post" onSubmit="javascript:return GB_showCenter('Anket',this.action, 280, 350)" >
greybox window open, but can't show post data..

View 5 Replies View Related

Call Main Window From Popped Up Window?

Jan 20, 2010

In my main window, I create a popup window. Is there a way to bring the main window back to the foreground (make the main window the focus window again) from the popup window using JS? Like from a link or a button?

View 1 Replies View Related

Keep Main Window In Background While Popup Window Comes Up?

Apr 11, 2011

I have a popup window that comes up when a user doesn't have access to a certain page within my site. The problem is when a user clicks on something the popup window comes up but the bigger sized window of that popup comes up in the background as well. I am trying to have my popup window come up while the original page I clicked from is still focused/seen in the background. This is the code I currently am using, can anyone help me with what I am missing. I have a back button but I won't need that if I want to maintain the original page in the background. Instead I will use a close button.

Code:
<html>
<head>

[code]....

View 1 Replies View Related

Send Value From Popup Window To Main Window

Oct 15, 2003

I am building a CMS and will have an Image browser built with it. When articles are added the will be able to open up the image browser when they find the image they want to insert I would like to send it(and ID from my database) into that textarea where the article is in(in the main window). So basically sending a value from popup to the main window(textarea). Is there a way i can do it.

View 3 Replies View Related

Pass Value From Main Window To Popup Window

Feb 15, 2005

how to pass a value from radio button in a window to a popup window using asp javascript?n in the popup window,there is a textfield to enter data to search from database.. the value from the textfield then is used to generate report.

View 1 Replies View Related

Opening Overlay Window When Closing Or Navigating From The Current Window?

Apr 25, 2011

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 ?

View 1 Replies View Related

Posting Data From A Form On My Site To A Form On Someone Else's Site:

Feb 25, 2006

Basically, I registered for a free board at one of the various sites because my server doesn't support .cgi scripts. I want to know if there is a way to have the data from a form on my site post to the board site -A user would fill in my form, click submit, and a new post would appear on the board site -as if they had entered it there.
If you can point me in the right direction, I would be grateful. Here is my thinking.

A) I can't locate the script that they use to perform a "submit"; so I thought I might enter their <head> data (as far as xmlns, href, etc) in my <head>; that my website might call up their script files, css sheets, etc.

B)I could code my own Javascript function to send my form data to their site. If I knew how to simulate a mouseclick on someone else's site, I could have the script "click" there, paste the data, and hit the submit button. But I don't.

C) I could size their site down to the form itself and put it in a frame on my page

Option C is clearly easier, but I would prefer option A or B. I have time and will happily do the research myself; provided that I know if approach A or B is even feasible.

View 1 Replies View Related

Getting [object] Error In Original Window When Opening A New Window

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

Opening A Contained Closable Window Within Browser Window?

Feb 2, 2011

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.

View 2 Replies View Related







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