.click(function() input.focus()

.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

  1. jQuery(function($) {

  2. $('#link_any').click(function(){

  3.                   $('#input_any').focus();

  4.  }).trigger("click");

  5. });

thanks to all