I implemented the ThickBox plugin and I get content from using an AJAX request. The print link prints the page behind Thickbox. Is there a way to print the actual content?
I use the following anchor tag and JavaScript link:
<a onclick="PrintPage()">Print</a>
JavaScript:
function PrintPage() {
window.print();
}
</script>
source
share