So, I have a mobile site that uses JQuery mobile that is pretty much the same thing as another one I created a week ago.
In that other site I had 2 changes that I wanted to import in my new site. The color oh the header of the nested lists and a custom home button in those lists.
In order to change the nested list header I added the following:
$(document).bind("mobileinit", function() {
$.mobile.listview.prototype.options.headerTheme = "c";
});
And this function is for the custom home button:
$(':jqmData(url^=transat-home)').live('pagebeforecreate',
function(event) {
$(this).filter(':jqmData(url*=ui-page)').find(':jqmData(role=header)')
.prepend('<a href="#" data-rel="back" data-icon="back">Back</a>')
});
As you may expect, everything works on site1 but not one works on site 2. But maybe JQmobile, for some reason, isn't loading properly. I suspect that because I'm getting this error:
Uncaught Syntax error, unrecognized expression: Syntax error, unrecognized expression: jqmData jquery.js:86
k.error jquery.js:86
k.selectors.filter.PSEUDO jquery.js:94
k.filter jquery.js:85
k jquery.js:82
t.querySelectorAll.k jquery.js:103
c.fn.extend.find jquery.js:106
b.fn.b.init jquery.js:27
b jquery.js:24
(anonymous function)
I have no idea what that error is and I haven't seen much about it either
Any ideas?
UPDATE:
Actually I just realized that my JQM options are just not working, I tried putting this at the end of the <head> tag:
<script>
$(document).bind("mobileinit", function() {
$.mobile.listview.prototype.options.headerTheme = "c";
$.mobile.defaultDialogTransition = "slide";
});
</script>
And I still have the standard fade transition. So my problem would actually be that my options aren't working, yet I don't see any related error
$(document).bind("mobileinit", function() { $.mobile.listview.prototype.options.headerTheme = "c"; });is still not working – Axel Jun 19 '12 at 18:17