Side navigation
#11571 closed bug (invalid)
Opened April 09, 2012 06:20PM UTC
Closed April 09, 2012 06:28PM UTC
Problem with preventdefault on mousedown event in Internet Explorer 8
Reported by: | frgformenton@gmail.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This demo locks the scroll when the user clicks with the mouse wheel button
http://jsbin.com/agoyum/edit#source
but this does not work in IE8
The preventDefault just does not work.
- - - -
This example is the same thing, but does not use jQuery, and works perfectly in IE8
http://jsbin.com/isefek/edit#source
Note that the PreventDafault works correctly.
- - - -
This is a bug in the implementation of the method 'on' from jquery?
Attachments (0)
Change History (1)
Changed April 09, 2012 06:28PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
jQuery doesn't normalize
event.button
, look atevent.which
instead or take your chances withevent.originalEvent
properties.