vote up -1 vote down star

Can get this to work:

$(document).ready(function(){
    $('a#reason').click(function(){
    	$('div#reasonEntry').toggle();
    	setTimeout($('#reasonForChange').focus(),10);
    	return false;
    })
});

But can't get it to work when using show('slow');

flag

2 Answers

vote up 0 vote down

Found the solution, thanks; http://stackoverflow.com/questions/1360917/jquery-focus-on-input

link|flag
Perhaps you should mark this answer as the correct one then :) – Morningcoffee Nov 5 at 11:41
Also, this has nearly nothing to do with what you asked in your question. – Alex Sexton Nov 5 at 16:57
It has relevance looking at the code, but the current title of this question is misleading, since .show('slow') isn't really used. – Morningcoffee Nov 6 at 21:14
vote up 0 vote down

Your code has quite a few quirks, try this out:

$(document).ready(function(){ 
  $('a#reason').click(function(){ 
    $('div#reasonEntry').show('slow'); 
    setTimeout(function(){ $('#reasonForChange').focus(); },10); 
    return false; 
  });
});
link|flag
Thanks but it doesn't work...I need to use Toggle() as the div can be opened and closed. – unknown (yahoo) Nov 5 at 10:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.