jquery - Detect when orientation change has ended -


is there way detect when user has finished changing orientation of mobile device, i'm using event detect when orientation changes, i'd detect when orientation change has ended. thanks

$( window ).on( "orientationchange", function( event ) { ... 

from orientationchange docs, emphasis mine

the orientationchange event fired when orientation of device changed.


Comments

Popular posts from this blog

Regex find and replace between <div class="customclass"> and </div> tag -

jpa - Passing entitymanager from reflection method -