I have a simple video player I would like to add double click events in my button, but unfortunately, it's not working in my iPhone but works perfectly in android
Here is my html
<div id="skip_right" class='btn10sec_next skip_button'>
</div>
and here is my js
$(".btn10sec_back").on("dblclick", function(){
$("#videoplayer")[0].currentTime -=10;
});
What do I need to do to so solve the problem?