Hi All !
I have to code below - works great in IE and Opera, but does not work at all in Firefox / Netscape. Any ideas?
The problem is that nothing happens when clicking printer friendly.
<html>
<head>
<script type="text/javascript">
function onPrint()
{
window.printForm.submit();
}
</script>
</head>
<body>
<form name="printForm" action="/xasp?print=on" method="post">
<table>
<tr>
<td><input type="checkbox" name="show" onClick="formSubmit();"></td>
</tr>
</table>
</form>
</body>
</html>