Strange. I am trying to blur() before the window loses focus so that when I come back, the text area is not selected by default. Doesn't seem to work :(
may be you are trying to bind the event before the DOM is loaded. Try to put the code in the ready handler of the page like this:$(document).ready(function() {$('#textarea').blur()})