Hello, can you please consider this html page: <html> <head> <script language="JavaScript"> function openwin(){ window.document.write('wait..'); } </script> </head> <body> <form name="AForm" action="page2.htm" method="POST" onSubmit="openwin();"> <span><input type="Submit" class="defaultBtn" value="Proceed"></span> </form> </body> </html> If i click on the 'proceed' button, the browser reacts different ways depending it's on IE5.0 or IE6.0: - on IE5.0, page2.htm is displayed, and that is what i want - on IE6.0, the process stops after 'window.document.write('wait..');' function. My question is: how to get IE6.0 the same behavior as IE5.0? Thank's for your help Didier
I couldnt understand what you wish to do? inside the "form" element you can use submit but if i wish to catch all control on a form and related functions i write a extra function that ..submit the form and opens the window together, or open the window via function and control the form from new window via .opener. Let you tell what the logic of your try? What do you wish to do with this form?