From: Scott A. L. <sc...@sc...> - 2001-07-26 18:12:41
|
Etyan is correct. Use the object model for Netscape: document.layers["myLayerID"].document.forms["formName"].submit(); ...and please, drop the "javascript:" protocol. It might kill your submission. Try this instead: <a href="#" onclick="document.myForm.submit(); return false;">some graphic other than those ugly standard buttons</a> scottandrew |