user1937021
user1937021

Reputation: 10771

Detect when orientation change has ended

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

Answers (1)

Satpal
Satpal

Reputation: 133403

From orientationchange docs, emphasis mine

The orientationchange event is fired when the orientation of the device changed.

Upvotes: 1

Related Questions