Are there any events available for the reset option for input search?
It seems miketaylr is correct, it isn't possible to catch this event. See the answer for this question: How do you detect the clearing of a "search" HTML5 input?
For the sake of being standards-compliant and not relying on one feature of one layout engine, I suggest you run your code on an onChange
event, if the new text value is empty.
This mentions a comment from Ajaxian (WebKit HTML5 Search Inputs):
There are also some custom events too – such as ’search’ which fires when the user pauses typing (set ‘incremental’ to true).
When testing, I found that this 'search' event also gets called when the input is cleared (at least in the latest version of Safari).