active questions tagged submit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T02:58:36Zhttp://stackoverflow.com/feeds/tag/submithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1773606/make-submit-button-not-kill-my-dialog-box0Make Submit button not kill my dialog box Simply Seth2009-11-20T22:21:00Z2009-12-07T15:33:34Z
<p>okay .. nooob alert.. sorry </p>
<p>I have a form and Im trying to perform ajax posts.</p>
<p>With the default submit button the dialog window closes, with the jquery button, nothing happens.
I want the dialog window to stay open so I can keep doing ajax requests uninterrupted and only close when I press esc or click the big "X".
Thanks</p>
<pre><code><div id="formBox" style="display: hidden;">
<form>
<fieldset>
<legend>File System Space Calculator</legend>
<p>
<label for="curr_alloc">Current Space Allocation:</label>
<br />
<input type="text" size="5" name="curr_alloc" id="curr_alloc" />
&nbsp;KB <input type="radio" name="curr_unit" value="KB" />
&nbsp;MB <input type="radio" name="curr_unit" value="MB" />
&nbsp;GB <input type="radio" name="curr_unit" value="GB" checked/>
&nbsp;TB <input type="radio" name="curr_unit" value="TB" />
</p>
<p>
<label for="curr_percent">Current Usage Percentage:</label>
<br />
<input type="text" size="5" name="curr_percent" id="curr_percent" />
</p>
<p>
<label for="desired_percent">Desired Usage Percentage:</label>
<br />
<input type="text" size="5" name="desired_percent" id="desired_percent" />
</p>
<br />
<p>
<input type="submit" value="calculate"/></p>
</fieldset>
</form>
</div>
<div id="calcBox" style="display: none;"> </div>
<script>
$(document).ready(function() {
$("#formBox").dialog({
bgiframe: true,
autoOpen: false,
height: 500,
width: 500,
modal: false,
closeOnEscape: true,
title: "Calculator",
closeText: 'Close',
buttons:
{
"Calculate": function()
/* form post */
$("#calcQuery").submit(function(){
$.post("calc.php", $("#calcQuery").serialize(),
function(data){
if (data.length > 0)
{
$("#calcBox").html(data);
$("#calcBox").show();
}
else
{
$("#calcBox").html("<h1>nuttin' here yet</h1>");
}
}, "html");
return false;
});
/* form post */
}
}
});
$('#calcButton').click(function(){
$('#formBox').dialog('open');
return false;
});
});
</script>
</code></pre>
http://stackoverflow.com/questions/1847899/how-do-i-prevent-enter-key-submit-in-jquery1How Do I Prevent Enter Key Submit in jQuery?Zack Peterson2009-12-04T15:59:40Z2009-12-04T20:19:18Z
<p>I'd like to either simply swallow an <em>Enter</em> key press in <code><input></code> fields or else instead substitute <em>Tab</em> key presses. I haven't yet decided which is best.</p>
<p>How can I do this in jQuery? I've got this so far:</p>
<pre><code>$(document).ready(function(){
...
//handle enter key
$("input").keypress(function (e) {
var k = e.keyCode || e.which;
if (k == 13) {
//???
}
});
});
</code></pre>
<p>(That <code>e.keyCode || e.which</code> part was recommended in <a href="http://stackoverflow.com/questions/302122/jquery-event-keypress-which-key-was-pressed/302161#302161">this question</a>.)</p>
<p>What might I put there to either (a) cancel the event or else to (b) force a Tab key press?</p>
http://stackoverflow.com/questions/1244009/remove-submit-x-and-submit-y-but-retain-other-values-in-url0Remove submit.x and submit.y but retain other values in URLstrangerpixel2009-08-07T10:18:01Z2009-12-04T07:07:56Z
<p>With my PHP form, I want to pass one value to the URL, but remove submit.x and submit.y. Here's my form:</p>
<pre><code><form action="booking.php" method="get">
<input type="image" value="access" class="rollbtn" src="../images/book-btn.gif" alt="Book" name="submit" />
</form>
</code></pre>
<p>I want the URL to display booking.php?submit=access - but omit the x and y coordinates that result from the type="image". If I add <code>onsubmit="this.submit();return false;"</code> it strips everything. Is there a way to do this, or should I just use type="submit" and style the button?</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit18Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T15:15:43Z2009-12-04T06:53:27Z
<p>I'm trying to direct a browser to a different page. If I wanted a GET request, I might say</p>
<pre><code>document.location.href = 'http://example.com/q=a';
</code></pre>
<p>But the resource I'm trying to access won't respond properly unless I use a POST request. If this were not dynamically generated, I might use the HTML</p>
<pre><code><form action="http://example.com/" method="POST">
<input type="hidden" name="q" value="a">
</form>
</code></pre>
<p>Then I would just submit the form from the DOM.</p>
<p>But really I would like JavaScript that allows me to say</p>
<pre><code>post_to_url('http://example.com/', {'q':'a'});
</code></pre>
<p>What's the best cross browser implementation?</p>
<p><strong>Edit</strong> I'm sorry I was not clear. I need a solution that changes the location of the browser, just like submitting a form. If this is possible with XMLHTTPRequest, it is not obvious. And this should not be asynchronous, nor use XML, so AJAX is not the answer.</p>
http://stackoverflow.com/questions/856378/submit-to-external-website-and-have-site-submitted-from-redirect-to-another-page0Submit to External website and have site submitted from redirect to another pageJeiPM2009-05-13T06:29:44Z2009-12-02T09:15:01Z
<p>I have to have a page submit to an external website. Not a problem.</p>
<p>Problem is the external website displays a successful message, not good, I need to get the site it was submitted from to be redirected to something more user friendly. The external website won't redirect, which I think might be the easiest, if I pass it a redirectto page.</p>
<p>Anyway, any suggestions for the easiest and less effort approach to this? I read about having an iFRAME. Is there another way?</p>
<p>Thanks in advance!</p>
<p>These are static HTML pages.</p>
http://stackoverflow.com/questions/1828835/ie8-cache-ajaxsubmit0IE8 cache ajaxSubmitmatthewb2009-12-01T20:52:05Z2009-12-01T20:58:52Z
<p>I am using the following function to do a image upload/display</p>
<p>The Target is the div where I am updating the content that is returned from the form function. I wanted ajax so I don't have to reload the whole page just to upload and see previews of the image.</p>
<p>I upload a image, display it into the preview, I crop it, and do another function that displays it in a new target (not shown), </p>
<p>The problem is in IE 8 it seems to cache all ajax calls, even though I am setting it not to, the only way to get it to show is a hard refresh. Is there a way to force it to not cache?
This works fine in all other browsers of course.</p>
<pre><code>$("#profile-photo").submit(function() {
var myOptions = {
target: '#preview-target',
beforeSubmit: showRequest,
success: showResponse,
clearForm: true,
resetForm:true,
cache:false
};
$(this).ajaxSubmit(myOptions);
return false;
});
</code></pre>
http://stackoverflow.com/questions/1524373/find-which-control-submitted-the-form-in-javascript0find which control submitted the form in javascriptPankaj Kumar2009-10-06T08:49:35Z2009-12-01T14:00:04Z
<p>HI guys,</p>
<p>is there any way to find which control is submitting the form through JavaScript??</p>
<p>also if one defined a JavaScript function to be called on the form submit event is there a way to find the control which caused the submission</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1623659/form-submit-with-javascript-works-in-google-chrome-only-once1Form submit with javascript works in Google Chrome only onceRayZ2009-10-26T08:27:31Z2009-11-30T02:18:56Z
<p>I have simple form.</p>
<pre><code><form target="_blank" action="somescript.php" method="Post" id="simpleForm">
<input type="hidden" name="url" value="http://...">
<input type="hidden" name="code" value="wrxosf">
</form>
</code></pre>
<p>...and there are some anchor link</p>
<pre><code><a href="#" onclick="$('#simpleForm').submit();return false;">Do it!</a>
</code></pre>
<p>It works fine in FireFox or IE, but Google Chrome.
Chrome does once, then link become unclickable.</p>
http://stackoverflow.com/questions/1813280/cant-get-jsf-input-field-value-on-java-backend1Can't get JSF input field value on JAVA backendsergionni2009-11-28T18:22:29Z2009-11-28T19:11:08Z
<p>Hello.</p>
<p>I have following UI part on JSF - it's simple search form with input field and submit:</p>
<pre><code> <h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
<h:inputText name="searchParam"/>
</h:form>
</code></pre>
<p>And correspondingly, on backend, i attempt to get value of input field next way:</p>
<pre><code>public List<Store> getFound() {
String name = (String) FacesContext.getCurrentInstance()
.getExternalContext().getRequestParameterMap().get(
"searchParam");
SessionFactory sessionFactory = new Configuration().configure()
.buildSessionFactory();
HibernateTemplate hbt = new HibernateTemplate();
hbt.setSessionFactory(sessionFactory);
foundStores = hbt.find(BEAN_PATH + " WHERE name = ?",
new Object[] { name });
return foundStores;
}
</code></pre>
<p>And null name is passed to backend.</p>
<p>It seems that problem in .jsf part, but from first glance looks ok...</p>
http://stackoverflow.com/questions/1809566/jquery-does-not-work-in-iexplorer1jquery does not work in iexplorerKelcio Casemiro2009-11-27T16:11:53Z2009-11-27T16:16:46Z
<p>The code below works perfectly in firefox and chrome, but not in iexplorer. Can anyone help me. </p>
<pre><code> $('form').live('submit', function()
{
$(this).ajaxSubmit(
{
target: '#target',
url: acao//'../paginas/addperson.php'
});
return false;
});
</code></pre>
http://stackoverflow.com/questions/1800709/button-element-with-type-submit-php-challenges0Button Element with Type Submit & PHP ChallengesKatundu2009-11-25T23:39:15Z2009-11-26T01:35:54Z
<p>Recently I change from <code><input type="button"></code> to <code><button></code> in my forms however the form being processed by PHP wouldn't then submit to the database. Am I missing something in my code? </p>
<p>Basically all I have done is changed this:</p>
<pre><code><input type="submit" name="submitAdd" value="Ask Question! " />
</code></pre>
<p>To this:</p>
<pre><code><button type="submit" class="btn" name="submitAdd"><span><span>Ask Question!</span></span></button>
</code></pre>
<p>Here is the basic PHP processing Code:</p>
<pre>
//Extract question from submission
$question = (isset($_POST["question"]))?$_POST["question"]:"";
$question_date = (isset($_POST["question_date"]))?$_POST["question_date"]:"";
$submitAdd = (isset($_POST["submitAdd"]))?$_POST["submitAdd"]:"";
//Open connect to database
include("include/session.php");
//Prepare data for submission
$db_question = addslashes($question);
$db_question_date = addslashes($question_date);
//If form has been submitted, insert question into database
if ($submitAdd) {
$sql ="INSERT INTO questions
(question,question_date)
VALUES ('$db_question', '$db_question_date')";
$result = mysql_query($sql);
if (!$result) {
$message = "Failed to add question. MySQL said " . mysql_error();
} else {
header("Location:http://localhost/grill/register.php");
}
}
</pre>
http://stackoverflow.com/questions/1787738/how-do-i-add-an-invisible-ajax-submit-on-my-form-triggered-by-input-field-updates1How do I add an invisible AJAX submit on my form triggered by input field updates, while also preserving the natural submit?Gene Bean2009-11-24T04:16:07Z2009-11-24T18:07:05Z
<p>Greetings kind community of wise developers !! It's my first time writing and I've looked around but alas, am stuck and need some assistance. I would be very grateful to any kind souls who can help.</p>
<p>My form needs to do 2 things :</p>
<p>1) Behave like a normal form, and submit rows of Product names, unit prices and quantities, when the Submit button is pressed (this is already in place).</p>
<p>2) Submit the rows of Product names, unit prices, and quantities <em>behind the scenes</em> (jQuery? AJAX?), triggered by any change in any of the Product rows, then use the JSON response to update some display output on the bottom of the page. The JSON response comes from the server. This "action" URL is different that that in (1).</p>
<p>I just need to know how to set up the bindings or ready function(s) or listener(s) or whatever you kids call them these days, to make this work.</p>
<p>Any help would be GREATLY appreciated and would save me from the huge black sinking pit I am struggling in right now.</p>
<p>Thank you !!</p>
<p>Cheers,</p>
<p>Gene</p>
http://stackoverflow.com/questions/942772/html-form-with-two-submit-buttons-and-two-target-attributes2HTML form with two submit buttons and two "target" attributesStoob2009-06-03T02:13:18Z2009-11-24T17:46:29Z
<p>Hi I have one html <form></p>
<p>The form has only one action=""</p>
<p>However I wish to have 2 different target="" attributes depending on which button you click to submit the form. This is probably some fancy javascript, but I haven't an idea where to begin.</p>
<p>Any ideas how I could create two buttons, each submit the same form, but each button gives the form a different target?</p>
<p>THANKS!</p>
http://stackoverflow.com/questions/1778552/how-can-the-submit-action-on-a-formform-form-be-automatically-fired-when0How can the submit action on a form(<form></form>) be automatically fired when all input elements within this form are completed/filled?Steven2009-11-22T12:19:08Z2009-11-24T00:22:56Z
<p>I want the submit action on a form() to be automatically fired when all input elements within this form are completed/filled. How to do it using ajax?</p>
http://stackoverflow.com/questions/1779953/form-submit-causes-uncaught-exception-in-greasemonkey0form.submit() causes uncaught exception in greasemonkeyflyon2009-11-22T20:47:41Z2009-11-22T20:48:47Z
<p>Hello!</p>
<p>I'm using a greasemonkey script to load a page with ajax and automatically fill in the form fields inside the page and submit the form. The problem is that when the <code>form.submit()</code> statement is executed I get an uncaught exception error:</p>
<pre><code>"uncaught exception: [Exception... "Component is not available"
nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)"
//location: "JS frame ::
file:///home/user/.mozilla/firefox/kwrkmbls.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js
:: anonymous :: line 375" data: no]"
</code></pre>
<p>Strangely, if I don't use ajax to load the page, but load it manually instead, the same code works; All fields are filled in and the form is submitted.</p>
<p>Any idea what's at fault;</p>
http://stackoverflow.com/questions/1777068/submit-view-in-asp-net-mvc0submit View in ASP.NET MVCognjenb2009-11-21T22:58:23Z2009-11-22T00:34:06Z
<p>How submit list View in ASP.NET MVC. List View dont have </p>
<blockquote>
<p>input type="submit" value="Save" </p>
</blockquote>
<p>and I dont know where to put it.</p>
<pre><code>Problematic code is:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<MvcZezanje.Models.student1>>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
Studenti
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>Studenti</h2>
<table class="data-table">
<tr>
<th>
Br. Indexa
</th>
<th>
Prezime
</th>
<th>
Ime
</th>
</tr>
<% foreach (var item in Model) { %>
<tr>
<td>
<%= Html.Encode(item.id_stud) %>
</td>
<td>
<%= Html.Encode(item.prezime) %>
</td>
<td>
<%= Html.Encode(item.ime) %>
</td>
</tr>
<% } %>
</table>
<p>
<%= Html.ActionLink("Create New", "Create") %>
</p>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/1760079/submit-with-checkbox-no-javascript0Submit with checkbox? No javascriptBua2009-11-19T00:19:21Z2009-11-19T00:40:55Z
<p>Is there any way to submit a form when a user clicks on a checkbox? Think of a todo list.</p>
<p>When the user clicks on the checkbox, it updates the todo entry in the database saying its done.</p>
<p>Can this be done without using javascript?</p>
http://stackoverflow.com/questions/1754829/how-to-get-submit-button-post-data-while-submitting-by-javascript-form-submit0How to get submit button POST Data while submitting by JavaScript form.submit()Corvus2009-11-18T09:50:20Z2009-11-18T16:04:49Z
<p>Let's say I have this form and script: </p>
<pre><code><SCRIPT LANGUAGE="JavaScript">
function handleSubmit() {
return false;
}
function Delete(element) {
var is_confirmed = confirm("Delete this record? \n" + title + " " + date);
if (is_confirmed) {
document.getElementById("Novinky").submit();
}
}
</SCRIPT>
<form action="index.php" method="post" id="Novinky" onsubmit="return handleSubmit();">
<input onclick="Delete(this)" value="Smazat" name="delete[12]" type="submit" />
</form>
</code></pre>
<p>Is there a way to get the submit button data (<code>delete[] -> Smazat</code>) to the POST request?</p>
http://stackoverflow.com/questions/1345959/jqmodal-window-closes-on-form-submit-for-all-browsers-except-ff0jqmodal window closes on form submit for all browsers except FFJulie2009-08-28T09:31:22Z2009-11-17T07:00:03Z
<p>I have a comment window that opens up in a small <a href="http://dev.iceburg.net/jquery/jqModal/" rel="nofollow">jqmodal</a> window. I am trying to use $.ajax to submit the form and show "success" in the small modal window. but in all browsers except firefox, the modal closes when I submit the form.</p>
<pre><code><script type="text/javascript">
$().ready(function() {
$('.reportForm').submit( function(){
if (document.rForm.comment.value != "") {
$('.reportForm').hide();
$.ajax({
type: "POST",
url: "<?php echo $_SERVER["PHP_SELF"]; ?>?c=<?php echo $c; ?>",
cache: false,
data: "comment=" + document.rForm.comment.value,
success: function(html){
$("#results").append(<?php echo get_option('ddrc_success'); ?> + " ");
}
});
return false;
}
});
});
</code></pre>
<p>fs</p>
http://stackoverflow.com/questions/1393544/do-all-browsers-treat-enter-key-13-the-same-inside-form0Do all browser's treat enter (key 13) the same inside form?Anthony2009-09-08T11:49:09Z2009-11-15T13:00:02Z
<p>I have a form with multiple submit buttons, each of which is relevant to how the user wants the data saved and/or loaded.</p>
<p>The problem is (or was) that if a user pressed enter on the last (or any other) input within the form, the submit button that seemed to be called was the "load saved formed" which is at the top of the form. All attempts to user javascript to have the return button default to the "save form" seemed useless, almost as if the browser was too busy already submitting the form to have any js interfere.</p>
<p>Finally, in FireFox 3.5, I actually had the server-side script echo out what it received for the <code>post</code> variable and discovered that none of the submit button values were being passed back to the server. As it turns out, I have hooks in the script for when the user hits "Save" or "Save and Print", etc, but if the user uses the "load page" it simply updates a variable and continues loading the page normally with that variable in context. </p>
<p>So with no submit button value at all, it did the same thing, it simply loaded the page.</p>
<p>So, on to the big question:</p>
<p>Is this typical browser behavior? Maybe even reliable browser behavior? Will hitting enter always submit the form as though no submit button was pressed at all, or do some browsers like to pick a button to use as the default when the user presses enter?</p>
<p>If it is typical behavior, what is the suggested course of action? I was going to have the script save anything no matter what, so long as there was data in the form, but then I realized that this was even more dangerous, because if the user loads one saved form, changes there mind, and changes the form dates and hits "Load Form", then it will save the form data from the pervious form for the new dates they have requested.</p>
<p>I considered setting it up so that <em>changing</em> the load form inputs (selects with dates and other particulars) would clear the form so that the server still recieved an empty form and thus would not overwrite any previous data, but this is risky as well, as many users will certainly notice and think that their data has been lost, etc, and there is always the slight chance that the user will be almost done with the form, go up to the top and fiddle with the form-load selects just to confirm they chose the right what nots and then be forced to start from scratch.</p>
<p>I should just have two forms, one for loading, one for the data, but the problem with that is that all of the data in the load part of the form does get used by the main form. I could write more js to combine the two on submit, or hide the data in the second form, but all of that seems clunky.</p>
<p>Essentially, I need a setup such that the top part of the form is independent of the main form, but not vice versa. Submitting the upper form does not submit the lower, but submitting the lower does submit the higher.</p>
<p>Okay,I've gone on long enough. Basically I'm wondering if a solution already exists or if anyone else has run into this and found a clever fix. I thought simply having the form save whenever the form wasn't empty was pretty clever, until it occurred to me that when the user goes to the page, it auto-loads the most applicable form given the date, and thus changing the load variables will almost always caused trouble.</p>
<p><hr /></p>
<p>Having read the possible duplicate that Artelius was good enough to draw my attention to, I'm still unclear on the consistency across browsers regarding the Enter button as submit.</p>
<p>It seems that almost everyone in that question assumed that hitting enter presses the first available submit, which was also my assumption until a friend suggested I hide (via CSS) another submit button at the top of the form with whatever I wanted enter to achieve. It was when this got me the same results that I finally viewed what was being passed to the server (ie nothing in terms of a submit value). So that means either</p>
<p>a) the "enter as no submit button just submit" is new behavior for some or all browsers,</p>
<p>b) the "enter as just submit" vs "enter as first submit button" is just browser choice, no trends, just typical cross-browser unreliability, or</p>
<p>c) Everyone just keeps assuming that the "enter as first submit button" is the case because most of us only code <code>if (situation1) else (assume not situation1)</code> and none of us are really sure what the browser is doing.</p>
<p>I highly doubt it's that last one, but then again, I also highly doubt most of us know which browsers do which. I'd sure like it if there was a straight answer I could pass along.</p>
<p>Oh, and finally: While I know it would be far simpler to use buttons, and I am taking that under serious consideration, I would also like to consider other options, since really the only need for less submit buttons I have is for when users hit enter instead of one of the buttons. </p>
<p>Actually, let me get carried away one more second:</p>
<p>The only thing I really need to know is whether or not they hit enter FROM one of the text inputs. If I could pass that along to the server, I'd know if I should save or reload the form. But the problem is (or at least what I've had troubles with) is that when the user hits enter in an input, it seems like there isn't any more playtime with js to capture anything, and in some cases, it seems like the browser is triggering the <code>onclick</code> for whichever submit button and thus not really allowing me to know the real event that triggered that. I'll play around more with jquery, but has this behavior been observeed by anyone else?</p>
http://stackoverflow.com/questions/1700446/asp-net-mvc-send-parameter-to-action-with-submit-button-in-the-partialview0Asp.net mvc send parameter to action with submit button in the partialViewunknown (google)2009-11-09T11:26:12Z2009-11-09T14:55:08Z
<p>My partialView is Opened in the modal dialog form, User select special row, I want to Submit the parent form with special value as a parameter.</p>
<p>My parent form is:</p>
<pre><code><form id="mainForm" action="<%= Request.RawUrl %>" method="post" enctype="multipart/form-data">
</code></pre>
<p>and my submit button in the modal dialog (and in the GridView) that post data to action is:</p>
<pre><code><button name="selectVehicle" id="<%= item.id %>" value="selection" type="button" onclick="$('#mainForm').submit()">
OK
</button>
</code></pre>
<p>this is work correctly and all my data Post to the Action, but how can i send special Value to the action using this submit button?</p>
http://stackoverflow.com/questions/1700301/what-is-the-difference-between-submit-function-and-send-javascript-functions0What is the Difference between submit() function and send() JavaScript functions?burak ozdogan2009-11-09T10:48:33Z2009-11-09T10:56:05Z
<p>Hi,</p>
<p>I have been studying JavaScript from one book. Once I was playing with the codes concerning the client-server site communication, I wanted to do a POST request with the code below (which uses IE ActiveX object XMLHttpRequest):</p>
<pre><code><script type="text/javascript">
var oRequest = HTTPRequestUtil.getXmlHttp();
var sRequestType = "post";
var sURLofRequest = "MyPage.aspx";
var bAsnychronously = false;
oRequest.open(sRequestType, sURLofRequest, bAsnychronously);
oRequest.send(null);
alert ('Status is '+oRequest.status+' ('+oRequest.statusText+')');
alert ('Response text is '+oRequest.responseText);
</script>
</code></pre>
<p>I have breakpoint on the PAGE_load eventhandler of the MyPage.aspx" page. I was expecting the execution will stop at that place when this HttpRequest occurs above. (It is called on a html button click).</p>
<p>The thing is, the request is done, the responseText is obtained (which was the xml content of the page) and no stop at the Page_Load method where I have put a breakpoint.</p>
<p>So, now I cannot understand the difference between calling .send() function with POST request type and submit() function on the call. </p>
<p>I would appreciate if you can explain the main differences briefly.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1700072/where-can-i-see-the-content-of-submit-java-script-function2Where can I see the content of submit() java script function?burak ozdogan2009-11-09T09:57:27Z2009-11-09T10:28:10Z
<p>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.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1697484/a-button-to-start-php-script-how1A button to start php script, how?Doug2009-11-08T18:44:41Z2009-11-08T19:04:49Z
<p>I want to make a button that starts my php script after I click it. So do I just make 2 separate files and have action post to the php file and then let it start? or is there a better way to do this? Possibly in one document?</p>
<p><strong>Update:</strong></p>
<p>Well, I basically made a script that would do a series of a loops until it's finished. So usually when I visit the page it automatically starts, so I'm making a button to start it only when I need it. </p>
<p>More info: Answer to one of the questions, "starting the script" as in it would only execute the script.</p>
<p><strong>More info:</strong> I really don't need to pass any data from the submit form to the php script. I just want my script to run when I hit a button. I just want to know what's the best way to do this.</p>
http://stackoverflow.com/questions/1390221/in-struts2-to-submit-values-by-postwith-using-an-action-method0in Struts2, to submit values by postwith using an action, methodDavis2009-09-07T17:07:21Z2009-11-06T12:34:25Z
<p>Hello, I'm from South Korea :)</p>
<p>I have a question, but I couldn't find a solution for my problem in Korean web community.</p>
<pre><code><s:form name="form1" method="post" action="products" theme="simple">
<s:hidden name="code" value="%{code}"/>
<s:submit type="button" name="method:selectSale" value="goPage"/>
</s:form>
</code></pre>
<p>This code has no problem.</p>
<p>But, I want to use "anchor" instead of "submit" tag. I just want to use hyperlink and 'post' way, not 'get'. How can I do this? Help me please~ :)</p>
<pre><code><s:form name="form1" method="post" action="products" theme="simple">
<s:hidden name="code" value="%{code}"/>
<a href="#" onclick="javascript:document.form1.submit()">goPage</a>
</s:form>
</code></pre>
<p>It doesn't work. :(</p>
<p>The main problem is how to get "method:selectSale".</p>
<p>in struts.xml,</p>
<pre><code><action name="products" class="sample.ProductsAction">
<result>abc.jsp</result>
</action>
</code></pre>
<p>and then, in ProductsAction.java,</p>
<pre><code>public String selectSale() throws Exception {
// ~~~
return "selectSale"
}
</code></pre>
<p>Ok, now, I have a question.</p>
<p>where do i have to put "selectSale" on code? ( using <code><s:a></code> or <code><a:></code> )</p>
http://stackoverflow.com/questions/768334/safari-submit-form-using-xhrpost-when-the-enter-key-is-pressed0Safari: Submit form using xhrPost when the Enter key is pressednobby2009-04-20T13:48:10Z2009-11-05T17:00:03Z
<p>I have bound a JavaScript function to the submit button of a form, causing the form to be submitted via an xhrPost request (using Dojo). However, when the user hits "Enter" in Safari, the form is submitted the usual way.</p>
<p>Is there any way to prevent Safari from submitting the form when the Enter key is pressed? Can I somehow bind my JavaScript function to the enter key instead?</p>
<p>Thanks a lot in advance!</p>
<p>--Andreas</p>
http://stackoverflow.com/questions/1478525/javascript-submit-form-in-an-iframe-help0javascript: submit form in an iframe...helpLoony2nz2009-09-25T17:13:58Z2009-11-05T00:00:01Z
<p>I can't believe I've never done this before....</p>
<p>Here's my situation: I am using 2 jQuery plugins. Shadowbox and validate (bassistance).</p>
<p>I click on a link to sign up for a newsletter. The link opens a form in a shadowbox. No biggie. The form is validated with the plugin.</p>
<p>When the form is validated and ready to submit, it doesn't.</p>
<p>This is what my submitHandler option (in the validate plugin) looks like:</p>
<pre><code>submitHandler: function(form) {
form.submit();
var s = window.parent.Shadowbox;
s.open({
player: 'iframe',
title: 'Thank you!',
content: 'http://www.somesite.com/includes/thank_you_grid_3.php',
width: 270,
height: 110
});
}
</code></pre>
<p>Help :)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1659662/to-store-collected-data-in-google-docs-1To store collected data in google docs [closed]durga2009-11-02T06:08:56Z2009-11-02T06:08:56Z
<p>Hello sir,</p>
<p>i want to retreive the user data for newletter subscription in popup plugin. While clicking submit button, i want to save the collected data to my googledocs page.
Can u help me regarding this.
Thanks in Advance.</p>
http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie70Disappearing submit button in IE7da5id2009-10-29T22:11:35Z2009-10-29T23:21:29Z
<p>Greetings. I'm having troubles with the following legacy code. It's fine in everything except IE7, where the submit button disappears. Space is still left for it on the page, but it doesn't show. I've tried various ways of forcing hasLayout, but without success. Any suggestions?</p>
<p>XHTML (XHTML 1.0 Strict DOCTYPE):</p>
<pre><code><div id="headerFunctionality" class="clearfix">
<div id="headerSearch" class="clearfix">
<form action="http://foo.com" method="GET">
<label for="q">Search</label>
<input id="q" name="q" type="text" class="text" />
<input type="submit" id="btn_search" value="Search">
</form>
</div>
</div>
</code></pre>
<p>CSS:</p>
<pre><code>#headerFunctionality {
float: right;
display: inline;
margin: 24px 14px 25px 0;
}
#headerSearch{
float: left;
margin-left: 20px;
width: auto;
}
#headerSearch label{
position: absolute;
top: -5em;
color: #FFF;
}
#headerSearch input.text{
width: 133px;
height: 18px;
border: 1px solid #999;
font-size: 0.69em;
padding: 2px 3px 0;
margin: 0 6px 0 0;
float: left;
}
/* Replace search button with image*/
input#btn_search {
width: 65px;
height: 20px;
padding: 20px 0 0 0;
margin: 1px 0 0 0;
border: 0;
background: transparent url(../images/btn.search.gif) no-repeat center top;
overflow: hidden;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
}
form>input#btn_search { /* For non-IE browsers*/
height: 0px;
}
input#btn_search:focus, input#btn_search:hover {
background: transparent url(../images/btn.search.over.gif) no-repeat center top;
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1644870/ajax-request-results-in-form-being-submitted-aswell0Ajax Request Results in form being submitted aswellPsytronic2009-10-29T16:17:41Z2009-10-29T19:53:43Z
<p>As the title states my Ajax call is actually causing the form to be submitted to its default action, why? I've never come across this before, all my other ajax calls have never done this.</p>
<pre>
function newAjax(t,u){ //t = type(post/get), u = url
var resource = null;
if (window.ActiveXObject) {
resource = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
resource = new XMLHttpRequest();
resource.overrideMimeType('text/html');
}
resource.open(t,u,false);
resource.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
return resource;
}
function send_newsletter(){
formObj = document.getElementById("news_form");
var inputs = formObj.getElementsByTagName("INPUT");
var parameters = "";
for(i = 0; i < inputs.length; i++){
parameters += inputs[i].name+"="+encodeURI(inputs[i].value);
if(i != inputs.length-1){
parameters += "&";
}
}
var url = "whereitshouldbegoing.com";
var ajax = newAjax("POST",url);
ajax.onreadystatechange = ajaxResult;
ajax.setRequestHeader("Content-length", parameters.length);
ajax.setRequestHeader("Connection", "close");
ajax.send(parameters);
}
</pre>
<p>It all works fine upto the .send line, which is the bugger which is causing the form to submit aswell(I also have no idea if the ajax request actually gets off).</p>
<p>The send_newsletter function is called from an input type="image" element with onclick="send_newsletter()"</p>
<p>Please don't tell me to use jQuery or another library, as much as I would love to, we can't use any external librarys, corporate guidelines and whatnot.</p>