I was looking for some help regarding printing a header and footer using the javascript function to print. For example, let's say i want the following first row of the table to appear on every page that is printed using the javascript print function.
<tr>
<td>Orignal Owner</td>
<td>Vehicle ID</td>
<td>Year</td>
<td>Make</td>
<td>Model</td>
</tr>
Is there a way to tell javascript to print that table row for every page it prints.
Thanks.
<tr>
<td>Orignal Owner</td>
<td>Vehicle ID</td>
<td>Year</td>
<td>Make</td>
<td>Model</td>
</tr>
Is there a way to tell javascript to print that table row for every page it prints.
Thanks.