I have a small jQuery snippet:
$('#showlink').click(function(){
$('#linkwindow').show('fast');
$('#linkwindow input').focus();
}
How do I trigger focus only after the fade ends? Sometimes this happens a little earlier, and I end up with a weird rendering error.
source
share