does anybody know an solution for buttons to react on 2 click events for only one button:
<input type="button" value="Click" ondblclick="alert('double')"; onclick="alert('ones')";>
@At my try if I double click on button, it alert only 'ones'; Why it isn't possible to have ondblclick and onclick in the same button?