HTML code:
Days
Jquery code:
$(\'#se
Are you waiting to bind the event until the Dom is ready?
Something like this might help:
$(document).ready(function(){ $('#secrecy').keyup(function(){ alert("ok"); }); });