KeyTips jQuery Plugin Example
This page shows an example of using the KeyTips jQuery plugin with a typical form.
Hold down the
Alt key to see the access keys on this form highlighted.
Get the KeyTips plugin via NuGet (http://nuget.org/packages/jquery.KeyTips/)
To use the plugin on a page simply:
- Add a reference to jquery
<script type="text/javascript" src="script/jquery-1.7.1.js"></script>
- Add a reference to jquery.KeyTips.js
<script type="text/javascript" src="script/jquery.KeyTips.js"></script>
- Add a link to KeyTips.css in the head
<link type="text/css" rel="stylesheet" href="style/KeyTips.css" />
- Copy the popup-back.gif image to the same folder as the KeyTips.css stylesheet
- Add a call to $('selector').keyTips() in your page's onload script
$(function() { $('#myForm').keyTips(); });