HTML Form With Differing Actions Depending On Button Pressed?

Mar 15, 2010

I have a form, and i want two alternative submit links done as <a> links.Essentially, one will 'save changes' and remain on the same page, the other will 'save and preview' the final content.I've been playing for a while and can't seem to get it to workIf i just use one button and set the form action as normal all works fine.I'm told that i can set the form action within a javascript function and submit the form from there, but the problem is that clicking the link now just goes to the 'href' on the save button without submitting the form. (I believe the href is still required to make a working link).My code is as follows (ive simplified it to the essential components being used, theres also some php bits in the action being set) :

Code:
<script type="text/javascript">
function docSave()

[code].....

View 5 Replies


ADVERTISEMENT

JQuery :: Validate: Check Certain Form Fields Depending On Button Pressed?

Feb 4, 2011

I have a form with a series of fields. Only certain fields need to be validated when certain buttons are pressed. The reason for this is mainly because I had to build my own wizard style setup with jquery so, even though it's one big form, only certain bits need to be checked as they progress. I tried to tweak the accordion example given by the creators but it can't really apply to my scenario.

I've simplified the code down a bit and it is behaving exactly the same way as the big form...which is to say it's not behaving at all.

In this code, I want it to only validate field txt1 if button 1 is pressed and text2 if field 2 is pressed. One odd thing to note, when I set it up exactly as the site recommended with one big mass validation and such, it would only acknowledge the existence of the first field even though they both had class="required" on them.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head >

[Code].....

View 2 Replies View Related

Make A Html Button Stay Down When Pressed?

Mar 2, 2011

how do i make a html button stay down when pressed, until another button within a specified group of buttons is pressed, at which point it is released and the other button stays pressed?

View 4 Replies View Related

JQuery :: Plugin That Brings Up A Form When A Button Is Pressed?

Nov 11, 2011

Hope this is where I'm supposed to post, I'mlookingfor something for my site I'm trying to if a button is pressed a form comes up, I'm also trying to allow this to happen as many times as the user requires.

Eg button is pushed they input text and they hit add more code, they another text box comes up, then when they have done it they hit submit, it then goes through to the database

View 1 Replies View Related

For Loop - Execute Function() When Submit Button Within Form Has Been Pressed?

Oct 18, 2009

[Code]...

1. What is the benifit of having the above code with "window.onload" and "for loop" and loop through the forms if I only have ONE form in html?

2. What is this line of code "document.forms[i].onsubmit" saying? Does it mean "Execute function() when submit button within form[i] has been pressed?"

3. function() - Does this empty function mean "run every following function below"??

View 2 Replies View Related

Show / Hide Form Fields Depending On Radio Button Selection

May 29, 2005

How to show and hide form fields depending on a selected radio button.

View 14 Replies View Related

Append Button Value To End Of Text Box When Button Is Pressed?

Jun 6, 2011

I'm trying to do is replicate the iPhone's keypad screen. So when someone clicks on the number 1 button, a 1 is appended to the input box above. I have it working in jQuery, but the tablet that is displaying the page is slow to react to each button press. I was hoping if I could have the same functionality without having to load jQuery it may speed things up a bit.

View 2 Replies View Related

2 Specific Actions In 1 Button?

Jun 25, 2011

Here's the problem :

I have a div named "cat" that I want to hide with a Javascript:animatedcollapse (slideup) action. The action is linked externally on another page.

This is the line/link that hides it : <a href="javascript:animatedcollapse.hide('cat')">Hide the div<br/>

It works fine.

But, I want this action to happen at the same time that you press another link (that other link opens a page in an iframe).

This is the iframe link :
<p><a href="page.html" target="iframe">Open link in iframe</a></p>

Both links work fine. But i want to merge the two together. How?

View 4 Replies View Related

Two Actions With One Submit Button?

Apr 24, 2009

On click of submit button i want to send email and i am taking client to paypal page to do the payment.. e. i want to send FORM data to two different pages.

function submit_form(form)
{
document.form.action = 'xyz.com/order/email_order.php';
document.form.submit();

[Code].....

View 1 Replies View Related

Several Actions With One Submit Button

Jul 22, 2009

I basically have no idea what I'm doing. This is in a popup window, and what I want is for the submit button to populate an item to the shopping cart, close the popup window, and return to the parent url (in that order.) The problem I'm having is that I can either get items to show up in the cart, or get the popup to close and return to the url. Not both. Here's what I've got:

[Code]...

View 1 Replies View Related

Testing Which Button Was Pressed

Mar 10, 2004

does anyone know how I can test, in javascript, which of several buttons was pressed when submitting a form? Currently, I use the onSubmit event handler to call a form validator function, and it is in that function which I would like to test which submit button was pressed. Anyone know?

View 3 Replies View Related

Mouse Movement While A Button Is Pressed

Jul 20, 2005

<BODY onmousemove="return false;" oncontextmenu="return false;">
<IMG src="button.gif" onmouseover="this.src='down.gif'"
onmouseout="this.src='button.gif'">
</BODY>

This simple example shows where my problem is. It works fine when all
mouse buttons are released, and also if a button is pressed outside
the image. But if a button is pressed inside the picture it'll not
call onmouseout when the mouse is brought outside the picture. The
worst is it'll never call it, leaving the button stuck pressed forever
until mouse is moved over it again.

I just noticed if I place the picture inside an A tag it does work
fine then, but I don't need an A element here. Moreover, this fix
appears to work only for IE6, IE4 still doesn't work properly.
I'm asking if there's some other way to correct this. I'm also making
this compatible with Netscape 4.5, and the presence of an A element
changes the event.target.

The fact is I can't seem to disable the default drag'n drop of IE with
pictures. Netscape 4.5 appears to work perfectly. By placing
onmousemove="return false;" in BODY I aboid the cursor change in IE
but nothing else.

View 1 Replies View Related

Way To Check Mouse Button Being Pressed...

Jan 15, 2007

Is there a way to check if user still has the mouse button pressed?

View 2 Replies View Related

Show And Hide DIV When Button Pressed

Aug 5, 2010

I have an application where at the top I have a div id="title" for the title then in the middle div id="map" I have the google map then bottom I have buttons div id="mainOption". So what I want is that I want another few div at the right. By default one of the div I will fill up with a combo box and and submit button. The problem I want the div only to be shown when I pressed the button at the bottom div.

Below is my code but without the side div.
PHP Code:
<body onload="createMap()" onunload="GUnload()">
<div id="title1" style="padding: 4px; overflow: auto; background-color: #8EB4E3;">
<table border="0" cellspacing="0" cellpadding="0">
<tr><td></td></tr><tr>
<td>OUR SYSTEM</td><td width="11%" height="10"><div align="right"><img src="../fleet/images/logos/<?=$fleetID?>.png" width="100" height="50" /></div></td>
</tr></table></div>
<div id="map" style="width:100%; height:80%">Map goes here.</div>
<div id="mainOptions" style="position:absolute; left: 10px; background-color: #8EB4E3;">
<table border="0" cellspacing="0" cellpadding="0"><tr>
<td><img src="tracking.png" width="128" height="29" border="0" NAME="but1" onClick="change(this)" />
</td></tr></table></div></body>

View 4 Replies View Related

Change Both Set Of Images In Programme When Up/down Button Is Pressed?

Dec 13, 2010

The below is part of the codes of my image matching programme. The programme loads 2 different series of images in the area and the up/down button is supposed to change each set of the series of images. Currently, the codes only allow one set of the images to be changed. what can be done so that both set get changes when the up/down key is pressed?

Codes:

public void keyReleased(KeyEvent e) {
zoom = false;
repaint();
}

[Code].....

View 1 Replies View Related

Changing Image On Page When Button Is Pressed?

Mar 20, 2009

i have built a page which loads content into a div tag from a php page using javascript.

the problem i am having is that the title for eachg page is not inside the div so i keep being left with the same title on each page.

i have tried to change the image using the onmouseup/down functions but this has not worked.

here is the code for the functions

function loadContent(id) {
$("#contentArea").load("rpc.php?o="+id+"");
}
function roll(img_name, img_src)

[Code]....

View 1 Replies View Related

Calling A JS Func. When Back Button Pressed?

Sep 30, 2002

Is it possible to call a javascript function when the forward or back browser buttons are pressed? I have a site that loads content into iframes using javscript functions, however this means that the back button doesn't track the history of the user through the site.

View 2 Replies View Related

How To Make A Function Only Run An Image Button Is Pressed

Apr 4, 2011

This is from long complicated code so I can't show everything but how do I make the function only run if an image/button is pressed?

At the moment everything works properly in Chrome, FF and Safari just not IE. code...

View 2 Replies View Related

Back Button - Remember Actions - Table Sorting

Sep 10, 2009

I have a list like this...

Thing 1
Thing 2
Thing 3
(expand)

When you click on expand, it becomes.

Thing 1
Thing 2
Thing 3
Thing 4
Thing 5
Thing 6
Thing 7
(shrink)

Now, user X clicks on Thing 6. He didn't want 6, but 7. So he clicks the evil back button. Now the list is truncated again and the user gets annoyed wishing that the list was expanded where he left off. What's the best way to let javascript remember to keep the list expanded after the back button is pressed? I have the same issue for table sorting. I use the Jquery tablesorter pluggin and the sorting is forgotten after the back button is pressed.

View 2 Replies View Related

How To Define Whether The Left Mouse Button Is Pressed In Firefox

Apr 16, 2007

How can I define in Firefox whether the left mouse button is pressed
when I move mouse over a html element?

The documentation says that....

View 6 Replies View Related

Increase A Divs Width Everytime A Button Is Pressed?

Sep 26, 2011

I am simply trying to increase a divs width everytime a button is pressed

Code:
<!DOCTYPE HTML>
<html lang="en">
<head>

[Code].....

View 5 Replies View Related

Fetching ID From Content To Determine Correct Link When Button Pressed?

Mar 24, 2011

i have a website with content on specific pages i need some sort of JS soloution which will fetch an ID/Keyword out of the page content so when a button is clicked it finds the ID/keyword and directs the user to a specific form/page.

View 1 Replies View Related

JQuery :: Reset Toggle Actions Once User Click On Clear Button?

Mar 15, 2010

How to reset toggle actions once user click on clear button.

View 2 Replies View Related

Two Actions In One Form?

Dec 29, 2005

I have a form. When the user clicks submit I would like form to be sent to two different cgi scripts.

View 7 Replies View Related

Differing Background Image And Dynamic Resize?

Nov 17, 2010

I'm working with a site which has a centered table which is fixed width at 961px.Now what I need to do is to display one image on the right of this, and one of the left, and make it so that the image trails out to a constant color.

The issue starts when this image (really it was originally one image with white space between the two borders) is displayed in the browser. Depending on browser, resolution, etc, the image became far too wide.

[Code]...

View 2 Replies View Related

JQuery :: Stopping Back Button From Refreshing The Page And Undoing All The User Actions?

Aug 25, 2010

I have a number of pages that organize book data by category and then by unit, chapter, section, etc... Since there is a ton of data I display the headings and hide the rest of the content for the category. When a user clicks the heading then the content for the heading is shown underneath it. This works great and the users don't have to scroll (at least not much in comparison to if everything on the page was visible) unless for some reason they expand tons of stuff.

The problem:My company wants it so that if they expand a bunch of stuff and then browse to another page, that when they click the back button, everything should still be expanded as they left it. The issue is, this content is only available to logged in users and is based on their current location (which they can change at any point), so if their session expires or they logout, using the back button to get to these pages needs to redirect them to the login screen, if they change pages and change their location, going back to this page needs to display the correct content for their location. It is kind of a catch-22. Of course in the eyes of my company "shouldn't it just work that way?"

View 2 Replies View Related







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