Reputation: 10771
Is there a way to detect when a user has finished changing the orientation of their mobile device, I'm using this event to detect when orientation changes, but I'd like to detect when orientation change has ended. Thanks
$( window ).on( "orientationchange", function( event ) {
...
Upvotes: 0
Views: 114
Reputation: 133403
From orientationchange docs, emphasis mine
The orientationchange event is fired when the orientation of the device changed.
Upvotes: 1