In a Previous thread I was looking for a solution to setting focus to a newly inserted input. This now all works fine but I've noticed some very odd behavior since implementing it and thought that it probably warranted a new thread.
The object itself is added via a POST and after this is done I then use the following code to set the focus on it-
setInterval(function() {
$('#autoLook\\[' + (newRow -1) + '\\]').focus();
}, 1 )
This all works great and the new input now has focus set as desired. But if I then try to click on any other input element on the page it will not allow me to select them, even after I've filled out the input box that I've set focus on. Is there an alternative to focus that I can use that doesn't stop me from setting focus on other inputs?