Here is a rough structure of my php page -
<table>
<tr>
<th> header 1 </th>
<th> header 2 </th>
</tr>
foreach (values as value) {
<tr>
<td> column 1 </td>
<td> column 1 </td>
</tr>
/* Here if condition is true and media=print I want to close the table, add a page break and start a whole new table as below so the page prints nicely */
if (condition) {
</table>
<div style='page-break-after:always;'> </div>
<table>
<tr>
<th> header 1 </th>
<th> header 2 </th>
</tr>
}
}
Is there a way (maybe in javascript) to check if media=print and then add page breaks in a table?
Thank you for your help.