On Sep 10, 12:06 pm, sanford <[EMAIL PROTECTED]> wrote: > When the form is submitte a javascript:function() is executed and > the same document's DOM is modified via JavaScript's appendChild().
I have not tried this, but your " javascript:function() " caught my eye. Do you really use that kind of function call, and if so, where? Please post your simple form. Javascript: has a special meaning... it is supposed to return HTML code. Many misuse this of course, but the browser will often do totally unexpected things because it's in a different mode (expecting to see new HTML returned from the javascript: call) than in a form submit. Always let a form submit call a function and then cancel the submit yourself in the usual ways. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en -~----------~----~----~----~------~----~------~--~---
