mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
24 lines
1,001 B
HTML
24 lines
1,001 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
<title>jQuery Keypad</title>
|
|
<link type="text/css" href="jquery.keypad.css" rel="stylesheet">
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
|
|
<script type="text/javascript" src="jquery.keypad.js"></script>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$('#defaultKeypad').keypad();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>jQuery Keypad Basics</h1>
|
|
<p>This page demonstrates the very basics of the
|
|
<a href="http://keith-wood.name/keypad.html">jQuery Keypad plugin</a>.
|
|
It contains the minimum requirements for using the plugin and
|
|
can be used as the basis for your own experimentation.</p>
|
|
<p>For more detail see the <a href="http://keith-wood.name/keypadRef.html">documentation reference</a> page.</p>
|
|
<p><input type="text" id="defaultKeypad"></p>
|
|
</body>
|
|
</html>
|