On the page i show a pdf document in iframe and i try to print it directly. At end of my search, this situation is suitable for IE 11 for the reason security etc. but how can i do that? I don't know. please save me this situation :/
I use these DOM element and function
<button type="button" onclick="printDoc()" class="btn success">Print It</button>
<script type="text/javascript">
function printDoc() {
$(document).ready(function () {
document.getElementById("myDiv").contentWindow.print({
bUI: false, bSilent: true,
bShrinkToFit: true
});
});
};
</script>