jquery - Unknown chromium error: -6 on Android but not iOS -
when tried test in real device , simulator, in ios works well, not on android (so far have tested on android 2.2 emulator , android 4.0.4 device), gives error:
unknown chromium error: -6 this error occurs when tried navigate other page:
html:
<a href="#" data-role="button" id="login" class="fullwidth" data-ajax="false" rel="extrenal">login</a> js:
$('#login').click(function(e){ e.preventdefault(); e.stopimmediatepropagation(); jq.mobile.changepage("pendingchecklist.html", { transition: animation, changehash: true }); }); as far can gather information out there, error caused ics browser bugs unfortunately happens on android 2.2 emulator. have tried solutions out there no luck. advice?
i in phonegap application. error doesn't cause app halt or crash in experience.
please check ddms other blocking issue in log if application crashing. errors logged in red color.
you can ignore , move on. can provide logcat can see whether went wrong somewhere.
update
instead of below line
jq.mobile.changepage("pendingchecklist.html", { transition: animation, changehash: true }) can plece line , check
window.location.href="pendingchecklist.html"; it may issue changepage method.
Comments
Post a Comment