blob: c40f94a133d67a606e7d43310f4663610fda43cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<h1>Select Membership</h1>
<?php
$this->membershipSelectForm->setAction($this->url());
echo $this->membershipSelectForm;
?>
<script>
$(document).ready(function(){
$("#membershipID").focus();
$(document).keydown(function(e) {
if(e.which == 13) {
$(this).blur();
$('#submit').focus().click();
}
});
});
</script>
|