I have this fiddle of print with print preview from this link. When i print using chrome it is going into a print preview mode. But when i try it on ie it is showing the print window right away. What I want to happened is when using ie and click print I will also go into a print preview mode.
This is the JS
document.getElementById('printPage').addEventListener('click', function(){
window.print();
});
This is the HTML
<input type="image" src="http://placekitten.com/50/50" alt="" id="printPage" />