Tuesday, December 3, 2013

to print iframe content in HTML

<iframe class="showform" id="showform" name="showform" src="desktop.php"></iframe>
<script>
function printiframe() {
window.frames["showform"].focus();
window.frames["showform"].print();
}
</script>

No comments:

Post a Comment