onSearchIconClick

fires after the 'search' icon has been clicked in the input

void onSearchIconClick(Event e);
eEventevent object

Example

$$("search_field").attachEvent("onSearchIconClick", function(e){
    var value = this.getvalue();
    //...
});

Back to top