Skip to content Skip to sidebar Skip to footer

Call To Window.print Not Working In Ie

In a asp.net content page I have a hyperlink and I am making call to window.print.. but its not working, not opening the print window. Copy

Personally, I don't like adding any inline JavaScript to my elements. So, I would do this:

CSS:

#printPage{
    cursor: pointer;
}

HTML:

<inputtype="image"src="print.png"alt=""id="printPage" />

JavaScript:

document.getElementById('printPage').addEventListener('click', function(){
    window.print();
});

DEMO: http://jsfiddle.net/J5MBt/

Post a Comment for "Call To Window.print Not Working In Ie"