0
votes
2answers
49 views

Validate form in Javascript

i got a problem with my Order form. I need to validate some of the fields, checkboxs, dropdown list, and the quantity of the products. So i just started with the checkbox. It have to looks like: If i ...
0
votes
3answers
44 views

this.form.submit() pass the value to the url

I have this script. <form method="get"> <select name="report" onchange="this.form.submit()"> <option value="data1">data1</option> <option ...
-1
votes
0answers
66 views

How reload a JSP page inside a DIV if the result of a Struts 2 action is input or error

I have this action in a stuts.xml file: <action name="validar" class="validar.action.Validar" method="execute"> <result name="success">/validar.jsp</result> <result ...
0
votes
1answer
114 views

Confirmation after server side validation Struts 1

I've been doing a lot of research for this solution but it seems that most answers are in ASP.NET. I am using the html:form tag within my JSP. What I am trying to achieve is showing a simple ...
2
votes
2answers
93 views

HTML form action and onsubmit issues

I am wanting to run javascript user validation on some textbox entries. The problem I'm having is that my form has the action of going to a new page within our site, and the onsubmit attribute never ...
0
votes
1answer
163 views

load a form action result page into <div> without refreshing

I would like to load the result (add_cart.php?action=add&id=".$item[$i]['id'].")." of this select form in a div but still passing the variable to the add_cart.php page load the ...
0
votes
2answers
48 views

On click Windows Location not adding to form action

I am looking over a website that works in all other browsers except IE. Is there a reason why a link like below will not work in IE? Code: <form action="<?php echo base_url(); ...
0
votes
1answer
41 views

Combining Form and Select

when I put the form in comment, it works. But I need a form because I need to call the action "onclick". With this code, it prints the values in one line. Now he prints: ...
0
votes
2answers
56 views

How do you add a post action in PHP?

I'm using a captch system I found on line to protect my form. I have used it several times in the past but have always used the mailto function, this time I need to use an action url and do not know ...
0
votes
1answer
40 views

form action doesn't use php and instead appends php filename to url

I'm stumped. I use this code pattern elsewhere and it works fine, but I'm getting an undesired behavior in this instance. I've searched and found no other reference to this issue. My form code: ...
1
vote
2answers
52 views

How can I change a form field value before saving to db?

I have form: <%= form_for(@event) do |f| %> <div class="field"> <%= f.label :title %><br /> <%= f.text_field :title %> </div> <div ...
0
votes
0answers
50 views

javascript action is empty?

I'm a system administrator but have to resolve the following issue with. I have a web page (HTML+javascript). Also it have a from. As far as I know in the classic HTML each form must have action tag ...
0
votes
0answers
38 views

window.location after previous commands in javascript

I have a function: function OnButton1() { document.Form1.action = "http://apple.com" // First target document.Form1.target = "iframe1"; // Open in a iframe document.Form1.submit(); ...
-1
votes
1answer
76 views

redirect to custom php file after custom contact form is submitted in Magento

I made a CMS page to include a form I created but want the form action to send to /template/contacts/report.phtml Currently I have this in my form but I know its not right. <form ...
0
votes
2answers
71 views

Struts 2 - Date instance become String

when I submit the form, input error is occur. JourneyDate is instance of 'Date'. But ,here it become String which is not accepted by the setter and getter. <s:hidden name="JourneyDate" ...
0
votes
1answer
38 views

error with form action

I have the following C# code: AddCommentForm = string.Format("<form name=\"AddComment\" method=\"post\" runat=\"server\" id=\"add_comment_form\"><p> TITLE: <input type =\"text\" ...
1
vote
2answers
43 views

Create form action as variable

I have t following ASPX source : <form name="AddComment" action="ViewArticle.aspx?ArticleID=<%=ArticleID %>" method="post" runat="server"> The problem is that when I click submit I ...
3
votes
2answers
170 views

PHP form method post with action url

Hello, I have the following problem with my form. The form looks like: <form name='add' method='post' action='<?php echo htmlentities($_SERVER["PHP_SELF"]) ?><?php echo ...
0
votes
2answers
279 views

staying on same page after form post

and when you click send a pop up window comes up saying if it has sent successfully or not. thats all i want to happen but at the moment the pop up window comes up and in the window from where the ...
0
votes
0answers
72 views

Upload image on form submit having action to different file

I am trying to hook WordPress comment where user can upload images on comment submission. This is eventually going to be my own code and not using any WordPress native media uploaded. I have just ...
0
votes
2answers
342 views

html form - how to call different php pages based on the button selected

Problem: How to make an HTML Form call different php pages from the action based on what button is pushed? The code below is the solution I have now, but I figure there must be a better way to do ...
0
votes
2answers
146 views

change form action on buttton click [duplicate]

Possible Duplicate: How can I invoke multiple actions from a single form? i have two buttons in a form. The one is for calculate, the other for send the calculated data in an email. So ...
1
vote
1answer
56 views

getter for jquery dialog action

I assigned an action to my updpunchform jquery dialog: $(".punch").click(function(event) { ...... $('#updpunchform').attr('action', '/asistencias/updatePunch/'+$(this).attr("id")); ...
1
vote
3answers
609 views

One form, One submission button, but TWO actions

I have a form that collects client's info and then it saves them in the database sends out few emails sends the info to SalesForce (SF) department Now, the first 2 two task was easy, but the ...
1
vote
3answers
103 views

I want to know everything about “?” value of action attribute

I wanted to know everything about the "?" of action value of a form. As you see in the code below, We have a form (placed in a php template) that sends user input to be put in the database with the ...
0
votes
2answers
519 views

php form “action=?”

the ex-programmer wrote this code, and I couldn't understand why the action="?" and there is no any php script with it. can anyone tell me what script does this form call when submit? I guess it ...
-1
votes
1answer
42 views

How do I get a rails page to update when a form is submitted?

I've struggled with this, searched, etc., now I'm ready to ask for help. I have a controller 'DashboardController', and I have a single view 'dashboard.html.erb'. The dashboard.html.erb page has ...
1
vote
1answer
398 views

How to pass value from <option><select> to form action

I need to pass a value in option select to action where I have agent_id= Can anyone help? <form method="POST" action="index.php?action=contact_agent&agent_id="> <select> <option ...
2
votes
1answer
192 views

Two Form Action that opens URL in a new window in One Submit button?

Is it possible to Put Two Form action in one submit button?? the user will able to select two radio buttons and each form action will open the URL in a new window simultaneously. I don't know how to ...
0
votes
1answer
206 views

How do you handle multiple forms in WordPress plugin development?

I'm transitioning from CodeIgniter to WordPress. Still trying to wrap my head around WordPress plugin development... seems pretty easy, but one thing I can't figure out is: where do I send the form ...
0
votes
1answer
137 views

Where is the file that operate <?php echo $this->getSubmitUrl($_product) ?> form action in Magento product view page

I see there is the following code in the app\design\frontend\base\default\template\catalog\product\view.phtml file: <form action="<?php echo $this->getSubmitUrl($_product) ?>" ...
0
votes
2answers
726 views

How to make multiple action in HTML form

Say I want to make double action in HTML form. The first action would be to examle1.php And the second action would be to example2.php I have code like this <form name="input" action="" ...
1
vote
3answers
110 views

use javascript to access form element on different page

Is it possible to get a form elements value using javascript if the action goes to a different page? Here are snippets of code to illustrate what I'm trying to do: index.html: <form name="testMe" ...
0
votes
1answer
53 views

I have a need to perform two actions on a simple input form? I have read and tried all previous answers on this subject with no success

The following code shows how I am trying to first write info to .txt file and then have the custom search performed. If I remark out the action in Button2, Button1 works fine and writes text to .txt. ...
0
votes
1answer
48 views

My form keeps getting directed to nowhere upon submit b/c my forms action url already uses url parameters

Hi I have a Simple form that uses a get method to pass a value to the next page. The forms action url is a url that already has URL parameters, so when i click submit I get redirected to a page that ...
0
votes
2answers
341 views

How to include and pass a Javascript value to the next page?

Hello everyone I'm here today because Ive been trying really hard to understand and after many many hours of trying to learn and getting nowhere Ive decided to just create this post. Thanks in advance ...
0
votes
0answers
35 views

Forum submission requires double submit before doing anything

So this might be because of my action but at the same time I doubt it, how ever I am confused as to why this happens at all. I have some php that essentially does this: if($_POST['submit_me']){ ...
0
votes
0answers
62 views

How to reset form after mailto?

First question! Glad to be here. :) I have a form set up to validate the input, and then if all fields are valid, send the entered information over to an email: <form onsubmit="return ...
0
votes
1answer
98 views

Change form's action attribute

Okay, I must be missing something here because this should be extremely simple, yet it doesn't work... I have a form on my page with an empty action attribute (action="#"). When the page is ready, I ...
0
votes
4answers
183 views

calling a php script from a form action html

I get the following error message while submitting a html form action Internal Server error html code : <html> <body> <form action="insertProfile.php" method="post" > ...
0
votes
1answer
258 views

Submit a form in Struts : in an iframe context and without having the form fields as attribute of the action

I have got a tricky problem. I have a page with three iframes, each one calls a struts action to display the content. Now, in one of the iframes, there is a (struts) form and a (struts) submit ...
0
votes
1answer
55 views

trouble with a php form

I met a trouble with a form. In fact I have a php dynbamic page which has 1 parameter (and id), I'm trying to get an other parameter, so I have this fom: <form ...
0
votes
3answers
169 views

GET parameter in a POST <form>

is it possible to put some post input values to a 'action' url? For example: <form method="post" action="index.php"> <input type="text" name="username"> <input type="submit"> ...
0
votes
2answers
108 views

form submission to a directory? Possible?

I know it might sound a little stupid here. But i downloaded a script off github and realise that one of its form submission actually reference the form inputs to a folder/dir instead of a single php ...
2
votes
1answer
956 views

JSF form with URL action?

Is there any way to call a URL action within a <h:commandButton>, or for that matter a <h:form>? I'm trying to bypass my email's login page from my own website, so I'm using JSF beans to ...
3
votes
4answers
845 views

How do I use two submit buttons, and differentiate between which one was used to submit the form?

Currently, I have an HTML form where the user will enter a title and text for an article. When it is time to submit, they are presented with two buttons. One is to 'save' their article without ...
0
votes
0answers
84 views

Non-Secure App Canvas Form Action Directed to SSL Secured Page

We have built a Facebook app that utilizes the Canvas and Tab pages. The site has a form on it and everything works exactly like it should. We are now being requested to change the form's action from ...
0
votes
1answer
149 views

grails update td in a form

I have a button that updates a tag like fieldset or td to show the rendered template: <td id="tdBtn"><g:submitToRemote name="showFieldSet" value="Edit" update="fieldSet" ...
1
vote
5answers
248 views

PHP form action not redirecting

I developed a web crawler to search for certain tags on my companies websites to make sure they are live, have Google analytics, blah blah. However, my company has close to a hundred websites so the ...
0
votes
0answers
84 views

Multiple dynamic post actions not working

My problem is, I have a search form on my page, which I use to search in the library database of our university. When I put one single search form on the page it works and I can change the type of ...

1 2 3 4