Link to home
Start Free TrialLog in
Avatar of computerheaven
computerheaven

asked on

window.print not working in ie8

Hi,
I want to make this page print and then redirect to another page. Below is my code:
<script type="text/javascript">
<!--
window.print();
//-->

<!--
 window.location = "service_view.php?ticket_id=<?= $ticket_id; ?>"
//-->
</script>

This works just fine in FireFox, but in IE8 the page just redirects and does not print. Help please!
Avatar of computerheaven
computerheaven

ASKER

I just found out more information. If I remove the window.location, it will print. It just won't do both. But it will do both in FireFox with no problems.
ASKER CERTIFIED SOLUTION
Avatar of Umar Topia
Umar Topia
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks! I had to modify it to fit my needs but that was the line of thinking I needed.