Is there a jQuery unfocus method?

Viewed 208371

How can I unfocus a textarea or input? I couldn't find a $('#my-textarea').unfocus(); method?

6 Answers

I like the following approach as it works for all situations:

$(':focus').blur();
Related