Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 378 Bytes

File metadata and controls

14 lines (12 loc) · 378 Bytes

Section 6.4: originalEvent

Sometimes there will be properties that aren't available in jQuery event. To access the underlying properties use Event.originalEvent Get Scroll Direction.

$(document).on("wheel",function(e){
  console.log(e.originalEvent.deltaY)
  /*
    Returns a value between -100 and 100 depending on the direction you 
    are scrolling
  */
})