jQuery unfocus method?
How can I unfocus a textarea or input? I couldn't find a
$('#my-textarea').unfocus(); method?
yes this is the solution:
$('#textarea').blur()
Source
How can I unfocus a textarea or input? I couldn't find a
$('#my-textarea').unfocus(); method?
yes this is the solution:
$('#textarea').blur()