18
votes
13answers
20k views
Javascript Post Request like a Form Submit
I'm trying to direct a browser to a different page. If I wanted a GET request, I might say
document.location.href = 'http://example.com/q=a';
But the resource I'm trying to acce …
6
votes
6answers
494 views
What methods are available to stop multiple postbacks of a form in ASP.NET MVC?
A common web problem is where a user clicks the submit button of a form multiple times so the server processes the form more than once. This can also happen when a user hits the b …
6
votes
6answers
4k views
Use Javascript to change which submit is activated on enter key press.
I have a form on an HTML page with multiple submit buttons that perform different actions. However, when the user is typing a value into a text input and hit enters, the browsers g …
4
votes
1answer
656 views
How can I build multiple submit buttons django form?
I have form with one input for email and two submit buttons to subscribe and unsubscribe from newsletter:
<form action="" method="post">
{{ form_newsletter }}
<input type …
4
votes
3answers
2k views
How do you submit a dropdownlist in asp.net mvc
<% using (Html.BeginForm() { %>
<%=Html.DropDownList("TopItemsList", ViewData["ListData"], new { onchange="[???]" })%>
<% } %>
In the above example, what va …
3
votes
3answers
221 views
udocumented apis for the iphone that went through
Has anyone created an iphone app with "undocumented apis" and made it through approval?
If so, could you share your processes to the world and any follow-up responses to apple revi …
3
votes
3answers
208 views
trying to upload a non-existant file in IE, form is not submitted
I have a form with an input type=file. IE lets the user type anything they want into that input (whereas firefox brings up a file chooser). If the user enters a blatantly invalid n …
3
votes
7answers
2k views
HTML: Submitting a form by pressing enter without a submit button
Well I am trying to submit a form by pressing enter but not displaying a submit button. I don't want to get into JavaScript if possible since I want everything to work on all brows …
2
votes
4answers
48 views
Where can I see the content of submit() java script function?
Just for curiosity... If possible, where can I find and see the javascript submit() function's content on the form? Just to see how it handles http requests.
thanks!
2
votes
2answers
90 views
How to calculate difference of two fields on form submit Ruby on Rails
I am new to Ruby on Rails and have been using Scaffolding. On one of the forms I want to be able to have two fields and then have the difference between the two submitted to the d …
2
votes
0answers
66 views
Gathering e-signature on Perforce submit
I've been working on a project to create an FDA part11-compliant e-signed document repository. The mandate is that it use Perforce to track the various revisions of the documents, …
2
votes
5answers
2k views
css submit button / a href cross-browser
Hello.
I want my submit buttons + links to look as buttons and the same in all browsers.
Firefox 3.5 plays nice. But IE6,7,8 have all different looks. Can you help me with that ( …
2
votes
4answers
374 views
Why does Jquery submit() fail with an error?
I have a simple form on a page and I want to auto submit it when some event occurs.
The test code below tries to submit the form as soon as the page loads, but it fails. Firebug …
2
votes
6answers
1k views
Hitting “enter” does not post form in Ie8
Hello, I'm using php to pass a login form when required, and here is the code:
$htmlForm = '<form id="frmlogin">'.
'<label>';
switch(LOGIN_METHOD)
{
…
2
votes
7answers
3k views
HTML form with two submit buttons and two “target” attributes
Hi I have one html <form>
The form has only one action=""
However I wish to have 2 different target="" attributes depending on which button you click to submit the form. T …
