I know the HTML onChange event is triggered only when the element is blurred.
But is there a way to run a script when the content of a textbox changes? Even if it is changed in Javascript?
I have a textbox in my form to select a date. I also have a button with a calendar to pick a date. This calendar writes in the textbox and I want to do something when the date changes.
I cannot change the Javascript of the calendar.
I also want compatibility with all major browsers (IE7-9, Firefox, Chrome, Safari, Opera, …).
I found an answer to my question wich is maybe not the better one, but still works. It uses javascript timers.
I know this is not the better code in the world, but it works for every major browsers.