I have a HTML input field, lets say
<input type="text" maxlength="50" size="50" name="subject" id="subject">
I need to trigger a function on every 3 charachters entered.
For example:
If user enters "aaa" - trigger an event, the he continues to enter "aaa bbb" - trigger event again, etc.
But spaces should not be counted.
I need this to post value of the field to external API - to do searching.
Has anybody done this before?
Please help.