I know there are some posts regarding this but none seems to match my issue.
I want to set focus on a particular input after loosing focus on a button.
$('#more_button').focusout(function(){
$('#input-text').focus();
});
That do not behave like I’d like. Instead of going to “input-text” the focus goes on the browser address bar !
The problem is that you’re tabbing out of the last html element in your fiddle. Try this:
http://jsfiddle.net/sDnUr/7
with your original javascript