jQuery mobile fixed toolbar workaround for BlackBerry? -
i'm building webworks application using jquery mobile.
i want use jquery mobile fixed toolbar doesn't seem supported in bb7.
does know of work around similar toolbar behaviour in bb7?
edit:
this application fixed header + footer in android, works on models i've tested.

this how works on 9860 on bb 7.1. can confirm same problem happens on following devices bb7.1(9860, 9810, 9320), bb6(9700). i've tested far.

though attribute work on bb7.1(9930) & bb7(9930) @jasondscott points out. i've found work on bb7(9360-att).
try -
$(document).bind("pagecreate", function() { $.support.cors = true; $.mobile.allowcrossdomainpages = true; $("[data-role=header]").fixedtoolbar({ taptoggle: true }); $("[data-role=footer]").fixedtoolbar({ taptoggle: true }); $("[data-position='fixed']").fixedtoolbar('show'); });
Comments
Post a Comment