The popup menu seems difficult to reproduce - Going to the exact link below and then clicking on the specified login button seems to guarantee the behavior. http://demos.jquerymobile.com/1.3.2/widgets/popup/#&ui-state=dialog
I believe that the solution below may be due to the fact that it fixes other fun problems with the transition of the slides. (limited popup test only) but looks promising
Overriding the violation function using the code snippet below. You must call this before loading jquerymobile js
Background: jqueryMobile 1.3.2 does not properly bind the jquery one () handler.
.one () - "Attach a handler to an event for elements. A handler is executed no more than once for each element for an event type. ": http://api.jquery.com/category/events/ : essentially the event fires, and then deleted.
However, calling ("webkitAnimationEnd and animations") using one () potentially means that only one (depending on the browser) of the two handlers, the others are too late and can cause a memory leak.
Chrome43 handles both webkitAniationEnd and animation β however, only one at any given time. This causes the other to linger and fire the next time the element is animated.
source share