I am using a script that will print the specified div that I call. The problem is that when I want to print out a form with HTML fields, it would not print out information in those fields. Instead, it leaves it blank. Is their a was to make inputted information to be printed as well?
Javascript
function printDiv(divName) {
var printContents = document.getElementById(divName).innerHTML;
var originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
document.body.innerHTML = originalContents;
}
HTML
<div id="printableArea">
</div>
<input title="Print" class="buttonBlack fl" onclick="printDiv('printableArea')" type="submit" value="Print" />