I have a table that has input boxes and a pop up window that has information in it. I would like to be able to print the table data and include the popup information as well. Is this possible. Quick example below.
Javascript
<script>
function divPrint() {
window.print();
}
</script>
HTML
<div id="printable">
<table class="table">
<th>Option 1</th>
<th>Option 2</th>
<tr>
<td><input class="span6 text-center" type="text" id="cost1"></td>
<td><input class="span6 text-center" type="text" id="cost2"></td>
</tr>
</table>
<div class="popup" data-popup="popup">
<p>Need to print this as well</p>
</div>
</div>