Skip to content

Instantly share code, notes, and snippets.

@hanafiah
Created March 4, 2014 15:39
Show Gist options
  • Save hanafiah/9348755 to your computer and use it in GitHub Desktop.
Save hanafiah/9348755 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var loc = window.location.hash.substr(1);
if (loc == 'bke01') {
context.font = '20px Arial';
context.strokeText('BKE01', 70, 330);
context.beginPath();
context.rect(50, 300, 100, 50);
context.fillStyle = 'white';
context.lineWidth = 2;
context.strokeStyle = 'red';
context.stroke();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment