Skip to content

Commit

Permalink
slash demo added
Browse files Browse the repository at this point in the history
  • Loading branch information
tzury bar yochay committed Jan 11, 2009
1 parent 4c60170 commit 8275c73
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions test-static-04.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<html>
<head>
<style>
* {font-family: Helvetica, Verdana, Arial; font-size:0.95em}
.eventNotifier{width: 100px; float: left; color:navy; border: dotted 1px navy; padding: 4px; background-color:white; margin:3px}
.dirty{border: solid 1px #0ca2ff; color:white; background-color:#0ca2ff}

</style>
<script src="jquery-1.2.6.js"></script>
<script src="jquery.hotkeys.js"></script>
<script>
//This page is a result of an autogenerated content made by running test.html with firefox.
function domo(){
jQuery('#platform-details').html('<code>' + navigator.userAgent + '</code>');
jQuery(document).bind('keydown', '/', function (evt){
alert("Hello Slash");
return false;
});
}


jQuery(document).ready(domo);

</script>
</head>

<body>
<h1>jQuery.HotKeys.Testing.</h1>
<h2>Testing Platform:</h2>
<div id="platform-details"></div>
<h2>Project Home: <a href="http://code.google.com/p/js-hotkeys/">http://code.google.com/p/js-hotkeys/</a></h2>
<div id="report-area">
</div>


</body></html>

0 comments on commit 8275c73

Please sign in to comment.