Is there a jQuery unfocus method?
$('#textarea').blur()
Documentation at: http://api.jquery.com/blur/
Based on your question, I believe the answer is how to trigger a blur, not just (or even) set the event:
$('#textArea').trigger('blur');
Guess you are looking for .focusout()