PreventDefault alternative for IE8

前端 未结 4 1800
误落风尘
误落风尘 2020-12-04 01:17

Situation: Trying to modify VideoJS.com in order to work with IE8 and Youtube Chromeless API.

Problem: Progressbar dragging doesn\'

4条回答
  •  爱一瞬间的悲伤
    2020-12-04 02:22

    Just use

    return false;
    

    it's cross browser and has the same purpose as event.preventDefault();

    THe same instruction in jQuery is slightly different, it includes also stopPropagation().

提交回复
热议问题