Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
jQuery and jQueryMobile versions? – Phill Pafford Jun 19 '12 at 17:22
jquerymobile.com/download I believe the minimum version of jQuery must be 1.6.4 but 1.7.1 recommended – Phill Pafford Jun 19 '12 at 17:35
Ideally I would try to refrain from using diferent vesions of JQ and JQM on Site1 and 2. Tough, for debug sake, I just updated both JQ and JQM on site2. The latests version of JQ was giving me some errors I could actually work on and fixed the secon issue. Tough the $(document).bind("mobileinit", function() { $.mobile.listview.prototype.options.headerTheme = "c"; }); is still not working – Axel Jun 19 '12 at 18:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.