Hello,
I understand how use the onblur event the following way
<input name="city" id="city" onblur="myfunction()" />
But what if I don't want to insert javascript in html. I need to keep all javacript in a separate file. Can I execute my function without mixing html and javascript?
Thanks in advance.