JQuery onclick execute event of input field -


i don´t know if it´s possible , in case want when click on input text field activate function in jquery , after of action execute code of jquery - inside onclick - , put example :

<input type="password" name="password" value="" class="input_text_register" id="pass" onclick="jquery("#list").show();"/> 

i can´t works , supose have error because no works , in case activation input text field open other div show informations

thank´s , regards !

$('#pass').click(function () {     $("#list").show(); }); 

or

change onclick="jquery("#list").show();"

to

onclick="jquery('#list').show();"


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -