Mark Harwood wrote: > I have a simple form with just a select box in it and i wish to submit > the form on change. > > ... > > Anyone able to point me in the right direction plz
Untested, but try this:
$('#status').change(
function(){
if (confirm("Test confirm")) {
$("#FORMID")[0].submit();
}
}
);
Regards,
Michael Price
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
