Hello all ,
I am writing the below code in an html page using fopen().
<html>
<head>
<script language="javascript">
function printpage()
{
window.print();
}
</script>
</head>
<body>
<form>
<table width="184" height="44" border="0" align="right">
<tr>
<tr>
<td><input name="button" type="button" onClick="printpage();" value="Print"></td>
</tr>
</table>
</form>
</body>
</html>
When i run that new created html page on MozillaFF the print function works well,
but on running on Internet Explorer that print button does not work.
Please suggest me how these error can be reduced so that print option works on all browsers well .
also the table bordercolor of a table is also displaying differently in both FF & IE
any suggestion will be appreciated.
Thanks & regards.