how many inputs with .focus class do you have? more than one? If so, you are trying to put focus to all of then, which is imposible..
@hector is right. ----- Original Message ----- From: Hector Virgen To: jquery-en@googlegroups.com Sent: Wednesday, August 26, 2009 10:16 AM Subject: [jQuery] Re: focus() killed by return false; Try calling focus() on the actual element instead of the collection. Change this: $("input.focus").focus(); To this: $("input.focus")[0].focus(); -- Hector On Wed, Aug 26, 2009 at 7:37 AM, shenry <stuarthe...@gmail.com> wrote: *bump* Any ideas?