nope ..did not work... I tried something similar before.. can we use .click() some how?
Main Topics
Browse All TopicsClients ask for very weird things.
I have a form that needs to be submitted automatically. This is shopping cart form and when coupon code is available then checkout is be clicked automatically. So I need Javascript that will click the fourth button out the the buttons given bellow. I cannot change any code it is s very complex shopping card in cold fusion.
I just want to click the fourth button using Javascript. I found a few ways to by using
documnet.formname.buttonna
but here I have 4 buttons named the same and value is different.
<form id="myform" name="myform" action="index.cfm?fuseacti
----lots of code here.----
<input type="Submit" name="Action" value="Keep Shopping" class="formbutton">
<input type="Submit" name="Action" value="Clear" class="formbutton">
<input type="Submit" name="Action" value="Recalculate" class="formbutton">
<input type="Submit" name="Action" value="Checkout" class="formbutton">
</form>
Help please!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: entceePosted on 2007-09-20 at 20:22:49ID: 19933169
Try this:
ue="Checko ut";
<script>
document.myform.Action.val
myform.submit();
</script>