.click(function() input.focus()
Hi
when clicking a normal link i'd like to put the focus into an input type text
the following doesn't work
-
- jQuery(function($) {
-
- $('#link_any').click(function(){
-
- $('#input_any').focus();
-
- }).trigger("click");
-
- });
thanks to all