print another page from the current page
already tested.
reference : http://stackoverflow.com/questions/580781/how-to-print-another-page-from-the-current-page
$(document).ready(function(){
$('#printButton').click(function(evt) {
evt.preventDefault();
$('body').append('<iframe src="document_to_be_printed.php?param=value" id="printIFrame" name="printIFrame"></iframe>');
$('#printIFrame').bind('load',
function() {
window.frames['printIFrame'].focus();
window.frames['printIFrame'].print();
}
);
});
});
reference : http://stackoverflow.com/questions/580781/how-to-print-another-page-from-the-current-page
Comments
Post a Comment
silahkan berkomentar, kritik dan saran yang membangun adalah harapkan kita semua !