Skip to content

Instantly share code, notes, and snippets.

@diogotito
Last active October 25, 2022 10:40
Show Gist options
  • Save diogotito/08bb3b01fa236616c750b23c25c6025b to your computer and use it in GitHub Desktop.
Save diogotito/08bb3b01fa236616c750b23c25c6025b to your computer and use it in GitHub Desktop.
<style>
.PageTransitionLinkTitle,
.PageTransitionLinkTitle_hover {
font: xx-large sans-serif;
color: blue;
text-decoration: underline;
cursor: pointer;
}
.PageTransitionLinkTitle_hover {
outline: 0.2rem dashed red;
}
</style>
<script>
function generatePrintWindow() {
alert("Here's the printable version!")
}
</script>
<table border="0" cellspacing="0" cellpading="0">
<tbody>
<tr>
<td nowrap align="right" colspan="3">
<span id="mMainHeader_mHeaderPrintSummary" class="PageTransitionLinkTitle"
onmouseover="javascript:this.className='PageTransitionLinkTitle_hover';"
onclick="javascript:generatePrintWindow();"
onmouseout="javascript:this.className='PageTransitionLinkTitle';">
Printable Version
</span>
</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment