<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Press C continously</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<script>
var ss=0;
$(document).keypress("c",function(e) {
if(ss==3)
{
$( ".showcalender" ).datepicker();
ss=0;
}
else
{
ss++;
}
});
$(document).keyup("c",function(e) {
ss=0;
});
</script>
</head>
<body>
<div class='showcalender' style='left:30%;top:20%;position:fixed'></div>
</body>
</html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Press C continously</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<script>
var ss=0;
$(document).keypress("c",function(e) {
if(ss==3)
{
$( ".showcalender" ).datepicker();
ss=0;
}
else
{
ss++;
}
});
$(document).keyup("c",function(e) {
ss=0;
});
</script>
</head>
<body>
<div class='showcalender' style='left:30%;top:20%;position:fixed'></div>
</body>
</html>