Reputation: 1415
Can I have a button in my form which shows the print dialog box so that the user can print that form?
Upvotes: 1
Views: 263
Reputation: 2213
Attach this to your button:
onclick="javascript:window.print()"
Not ideally semantic, but it works.
Upvotes: 0