Skip to content Skip to sidebar Skip to footer

Page Loaded Twice When Trying To Override Jquery Mobile Default Settings With Touchoverflowenabled

As specified in the global config options I am trying to override jQuery Mobile default settings using the script order as specified in: http://jquerymobile.com/test/docs/api/globa

Solution 1:

The resolution for this was to remove the touchOverflow feature below.

   $.mobile.touchOverflowEnabled = true;

Removing this parameter means touchOverFlowEnabled is set to it's default value of false.

This feature is apparently known to be unstable and as it states in the docs:-

http://jquerymobile.com/test/docs/pages/touchoverflow.html

there are known downsides and the docs advise to use with caution (although this particular problem isn't listed).

Post a Comment for "Page Loaded Twice When Trying To Override Jquery Mobile Default Settings With Touchoverflowenabled"