Tagged Questions

onSubmit is the HTML event called when a submit button is pressed on an HTML form. It can be used to trigger javascript to validate the form, pre-process it, or block the submission altogether.

learn more… | top users | synonyms

19
votes
13answers
13k views

testing if javascript function exists

I need to test whether the value of a form's onsubmit is a function. The format is typically onsubmit="return valid();". Is there a way to tell if this is a function, and if it's callable? Using ...
14
votes
5answers
38k views

Should jQuery's $(form).submit(); not trigger onSubmit within the form tag?

I have the following: <script type="text/javascript"> function CancelFormButton(button) { $(button.form).submit(); } </script> <form onsubmit="alert('here');"> <input ...
6
votes
1answer
637 views

OnSubmit with Mobile Safari

While using jCart I noticed that it did not work on the iPhone. After some testing (and speaking with the developer on the jcart forum ) it seems that it fails to call the submit handler when clicking ...
3
votes
1answer
38 views

How to know which submit input is clicked on submit?

How can I know which submit input is clicked on submit? For instance, I want to know whether 'update' submit input or 'update_close' submit input is clicked on submit. html, <form ...
3
votes
2answers
81 views

How to enable a disabled text field?

I wanna know how do I enable a disabled form text field on submit. Also I wanna make sure if user goes back to form or click reset field will show again as disabled. I tried to use ...
3
votes
6answers
576 views

Javascript form validation only works in firefox

I am relatively new to Javascript so I'm hoping this is a simple mistake. I building a generic form validation function that is called on the form's onSubmit. The function loops through all the form's ...
2
votes
2answers
49 views

Javascript: onSubmit function submits form before function has finished?

I'm asking this because I am at a complete loss myself and need a fresh pair of eyes. The following JavaScript function is successfully called on submission of the connected HTML form. The function ...
2
votes
4answers
54 views

Cannot block the form submission with Ajax response fired by onSubmit attribute.

This question is a bit different from the ones already answered... What I'm looking to do is run a function, autoHide(), that calls a PHP file, artistdo.php, that executes a MySQL query, on form ...
2
votes
1answer
119 views

onsubmit function is not being called

I am designin a shoutbox which is AJAX based. http://businessgame.be/shoutbox.php The script works perfectly in google chrome, but other browsers don't act like I expect. To shout a new message, ...
2
votes
4answers
99 views

what is the need for the explicit “return” keyword when using onsubmit in a form using Javascript?

I have a C/C++ programming background, and while casually learning Javascript through the @3C webpages on JS, I found this piece of code - <html> <head> <script ...
2
votes
1answer
174 views

How can I block input after JQuery Validation SubmitHandler and Form.Submit succeeds?

I've got 2 methods of validation in my Form. a. JQuery Validation b. A couple complicated hardcoded rules in Form.Submit() handlers. I need to disable the submit button once BOTH a & b ...
2
votes
1answer
232 views

form onsubmit versus submit button onclick

Which would be the reasons to ever use the onclick of a submit button to determine whether or not the form should be submitted? I believe strongly that to execute something before submit and cancel ...
2
votes
3answers
268 views

HTML/Javascript onchange vs onsubmit problem

I am trying a code, that will load an iframe onsubmit. I am able to do it onchange of a text field (code taken from somewhere). But onsubmit does not work: Works <!DOCTYPE HTML PUBLIC ...
2
votes
1answer
167 views

Safari/Chrome Not Posting Values When Changed Via Javascript

I have a few hidden form elements like so: <input type="hidden" name="numberOfAdults" /> I then have an onsubmit function that does some addition and puts the sum into the hidden fields: ...
2
votes
1answer
2k views

jQuery: How to intercept form submits reliably?

I'm trying to intercept all kind of form submissions for a specifc form on a web page. It looks to be very simple with jQuery: form.submit(function(e) {…}) and it works beautifully if I click the ...
2
votes
1answer
501 views

pass url stored as string in variable to form's onsubmit

how can i make a form tag using onsubmit (that executes upon hitting enter) which opens a target window with a given url in a string variable form? what i have so far: <div id="row2"> ...
2
votes
4answers
341 views

How to add two “on submit=” values to a form?

I am trying to validate my form using two separate JavaScript functions: <form onsubmit="return formCheck(this); return validate_dropdown();" action="somepage.php" method="post" ...
2
votes
5answers
2k views

Wicket : Can a Panel or Component react on a form submit without any boilerplate code?

I am currently evaluating Wicket and I am trying to figure out how things work. I have a question regarding form submit and panels (or other components). Imagine a custom wicket panel which contains ...
2
votes
1answer
763 views

JavaScript To Clear Form Field On Submit Before Form Submission To Perl Script

We have a very long form that has a number of fields and 2 different submit buttons. When a user clicks the 1st submit button ("Photo Search") the form should POST and our script will do a search for ...
2
votes
1answer
626 views

.NET C# - Call a javascript method after the page has validated?

I have a simple javascript (JQuery based) method that does some css magic to show/hide some divs when a user submits a .net web form function doShowHide() { $('.Button').hide(); ...
1
vote
2answers
29 views

Are multiple onsubmit javascript functions allowed in a forms?

Are multiple onsubmit functions allowed in forms? Example: <form name="form" method="POST" action="contactus.asp" onsubmit="return verify()" <!--*****CAN I ADD ANOTHER onsubmit FUNCTION ...
1
vote
1answer
10 views

using the method onclick () to trigger a function that opens a window it grabs from the clicked button

<script language="JavaScript"> function goThere() { var the_url = window.document.form.button.value; var good_url = fixURL(the_url); ...
1
vote
2answers
184 views

Javascript onsubmit=“” not working

I'm not sure if my error comes from submitting the form to itself via PHP but it is just not hitting my function and submits anyway no matter what is returned. I'm not sure what I'm missing here. This ...
1
vote
2answers
177 views

How to check input validation using Ajax connect to database (jsp)

The code is to check if the university input from user already exists in database. If yes, then submit the input and go to the next page; if not, then send user an alert message and stay on the same ...
1
vote
1answer
46 views

How to check that the unobtrusive validations has been validated in jquery function?

I have a form with four fields. I have applied some unobtrusive validations to 3 of them. I want that when all unobtrusive validation have been performed then a jquery function is called, but there I ...
1
vote
2answers
48 views

Checking Password onsubmit

I have a basic signup form: <form action="adduser" method="post" onsubmit='passwordCheck()'> Email Address: <input type="email" name="email" required autocomplete="on" ...
1
vote
1answer
164 views

jQuery + jEditable - Prevent Submit for Custom Input

I am using jEditable plugin with the datepicker but I need validation for the date before submit it to the database. So i edit the jEditable-datepicker.js to something like this: submit: function ...
1
vote
2answers
71 views

Replace line-breaks by spaces using javascript

I want to see if it's possible to block the enter key and replace it with a space. I'm also using form validation to only allow letters, numbers and some other specific characters like the dollar ...
1
vote
1answer
145 views

Submitting a form with onclick and onsubmit

I'm trying to setup a 'Click to Chat' system for my company. It requires a form which captures some information from the user. When you submit the form, it's supposed to open a new window using the ...
1
vote
1answer
91 views

Can't load image using javascript within onsubmit form event on safari

I want to load an image with JS within the form event "onsubmit" without stipping the submit action of the form. What I do is the following: var img = new Image(); img.onload = function(){ ...
1
vote
3answers
128 views

Onsubmit validate change background requried fields?

Anyone know of a good tutorial/method of using Javascript to, onSubmit, change the background color of all empty fields with class="required" ?
1
vote
7answers
138 views

Ajax Submit Page Refresh

I've been going nuts, and I can't seem to figure how to stop the page from refreshing when submitting a form via ajax. I've set up a jsfiddle for you to look at: this link I've done the ...
1
vote
3answers
106 views

Firefox addon data sent in post firebug

I know that Firebug can display data sent by AJAX, but I cannot find way to see data sent by pressing button "Submit" on form of web page. Is it possible? Thanks.
1
vote
1answer
389 views

Redirect in onSubmit() method of simpleformcontroller

I am new to spring framwork and using 2.5 version. My requirement is that based on some value of command object in submit method I have to redirect the user to url /out.This is not defined as any ...
1
vote
3answers
1k views

Onsubmit doesn't work in Chrome

I have two forms and a button. Everything works fine in Firefox. I get a new window, with a Paypal payment, and in the window where everything happened i get the send_mail form submitted that will ...
1
vote
1answer
418 views

Using variable with php from javascript onsubmit event

I'm trying to use a value from onsubmit() in php. More specific: An HTML form is being submitted by the client. The onSubmit passes it to a couple of javascript functions. One of these functions is ...
1
vote
1answer
998 views

How to access old and new values before submitting with jeditable

I have a field being updated by jeditable. I want to output a warning message before submitting updates if the value is being reduced (which would result in data being lost), but not if it's being ...
1
vote
1answer
821 views

Fancybox Confirmation Window

I have a newsletter sign-up form and I'd like the confirmation to appear in a Fancybox window. Trouble is, I don't know how to do this! What code do I use to call the window onSubmit? Where do I put ...
1
vote
3answers
644 views

how to wait for asynchronous operation on form onsumbit

I've added a hook to form submit event (there are other events on the form submit ) and need to report the submit to a server on another domain using createlement(script). How can I cause the submit ...
1
vote
1answer
201 views

Cannot access javascript injected function

I am injecting the following code directly into my browsers address bar. If I edit it just a bit (whilst not even changing any code) from the HTML tab in Firebug, it will work. This piece of code will ...
1
vote
3answers
2k views

pass javascript variables to form/input fields as onsubmit href link

id like to have an input box that a user can enter a search term into that gets passed to maybe a javascript function that then combines some url segments with the search term creating a full url. up ...
1
vote
1answer
67 views

Submitting form with JavaScript on selector change

I have added some code to automatically submit the form when a selector is changed: <select name="template" id="templateselector" onchange='this.form.submit()'> ...
1
vote
2answers
116 views

How do I save the edits for a checkbox that implements an email notification?

On my site, a user gets email notifications when someone comments on their profile, or comments on their blog etc...I have made a email settings page that has checkboxes to allow the user to decide to ...
1
vote
3answers
2k views

Calling JS Function on Form Submit

I have created a JS function which executes fine when it's included an the 'onclick' action of standard HTML link tag as follows: <a href="#" onclick="return ...
1
vote
2answers
2k views

OnSubmit is not working in IE 8

Everything was working fine in Internet Explorer 6 but it's not in Internet Explorer 8. I will appreciate help from anybody. I want to know what I should change to make it work in IE8. This is the ...
1
vote
3answers
1k views

Is there a way to fire a javascript function on submit without onsubmit()

I am looking to write a javascript function that will fire when a user submits a form, however I do not have edit access to the submit button so that I can add the onsubmit function. I am able to add ...
0
votes
1answer
22 views

Strange issue with form onsubmit and javascript xmlhttprequest

I have a strange issue with my code I can't seem to figure out. I'm relatively new to js and utilizing http requests to retrieve json data however I've been able to come up with code that works, for ...
0
votes
4answers
31 views

add or subtract functions from onSubmit event handler?

I have the following code: function showAddrBox() { var prompt = document.getElementById('addr_prompt'); prompt.style.display = 'block'; document.generic_form.address.style.display = ...
0
votes
11answers
344 views

Using onclick and onsubmit together

I want to perform an onclick and onsubmit at the same time, is this possible? Or if this is bad practice how can I merge the two codes to perform both events? I have this piece of code checking a ...
0
votes
0answers
12 views

Flash Builder 4.5.1 keyboard questions

just a quick question - most tablets and devices have a touchscreen keyboard that will allow the user to enter text. we've all seen them a million times. How do I a) set the keyboard to a ...

1 2 3