Hi
I use this script to print out some forms in a iframe. It works greate.
<script type="text/javascript">
function zPrint(oTgt)
{
oTgt.focus();
oTgt.print();
}
</script>
<body>
<iframe name="myFrame" id="myFrame" width="100%;border:none" height="1100" allowTransparency="true" frameborder="0" scrolling="no"
src="http://cuk-qs.cochlear.com:88/machform/view.php?id=1"></iframe>
<input type="button" value="Print this Form" onclick="zPrint(myFrame);" />
</body>
Now we have some forms which we do not want to send by email. Only for print. Is there a way to deactivate the Submit button in some forms?
Thanks
Sonic