I\'m getting some strange happenings on google chrome. With the following code I\'m getting an infinite number of alerts.
<
This is happening because it is setting focus back to the text box. Try this it should work fine in Chrome
$('input[type="text"]').live('focus', function(event) { alert('in'); $(this).blur(); });