Chris Double schrieb: >> In IE, when I do enter a value into the practice "tab" and submit, >> the page returns to the "Overview" tab with no result provided in the >> "Practice" tab. > > Try removing the 'action' attribute on the form element. Since you are > effectively doing an 'onsubmit' it's not needed. IIRC I had problems > with IE doing 'double submits' with an action set to '#' when also > having an onsubmit. So it may effectively be doing a normal form > submission on IE which results in posting to the same page. > > Chris.
Add "return false;" at the end of your onsubmit function to avoid double submit. Valid HTML requires the action attribute. If you omit it, browsers submit the form to the page by default anyway (at least FF and IE). -- Klaus _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
