I am building a workout catalog using jquery mobile for the UI and jquery templates to deal with the html. I have been able to append html to an already created page AND get jquery mobile to change the markup thanks to the .page() function.

However, I want to be able to create new jq mobile pages. I can inject code into divs with data-role=page, call .page() on it and it's all fine. But appending a fully made page to the body does not work.

EDIT: This question and my answer refers to jquery mobile alpha 3

link|improve this question

75% accept rate
feedback

5 Answers

up vote 7 down vote accepted

Ok I got it. If you want to add a to the DOM you have to also add a value for data-url. When you create a static html page,

<div data-role="page" id="home">

jQuery mobile automatically adds a data-url equal to the id you give it. When you do it yourself, you have to hold its hand and pass it a data-url="home".

When you generate your html string append it to $.mobile.pageContainer so jQuery Mobile knows where to find it (appending it to the body works also, but it's probably best not to rock the boat). After that, call .page() on your page in the DOM so that jQuery mobile does all of its magical <span> magic to make it pretty.

$('#home').page();
link|improve this answer
2  
Could you create a JSFiddle for this? I am having trouble reproducing your method. I can see in the dom that JQ Mobile seems to be decorating my template with all of the proper attributes once I call page(), but nothing actually appears in the browser window. – Dusda Aug 4 '11 at 23:42
It'd be great if we could get more details on appending the html string to $.mobile.pageContainer. I'm trying to to this but this variable is always null when I get to it. Do I need to initialize it? – Shaun Budhram Nov 3 '11 at 10:55
feedback

Gravedigging this thread. Using the jquery mobile (1.1.0), this was working for me, .trigger("create") ...

    content = '<div data-role="page" id="myID" data-url="myID">'
    // ...
    $('body').append(content).trigger("create")
    $("<a href='#myID' data-rel='dialog'/>").trigger("click")
link|improve this answer
1  
Instead of saying "latest", since these threads live on a long time, maybe mention the specific version. :) I'm guessing that your "latest" at the time was either 1.0 or one of the alpha's leading up to 1.1.0, whereas 1.1.0rc1 was released on 2012-02-28. – Adam Tuttle Mar 27 at 16:38
feedback

I don't understand your solution - can you clarify a bit more please?

I'm trying to render an XML file as a jQuery Mobile site, using jQuery Templates to (hopefully!) simplify the process.

My XML "success" callback is the following function; my home template is defined earlier, on page load:

function setup() {
    $.tmpl('home', $feed).appendTo($.mobile.pageContainer);
    $('#home').attr('data-url','home');
    $('#home').page();
}

But I'm not seeing anything on-screen--it's not even adding the page to the DOM at this point.

If I modify my setup function to use .appendTo('body') then the evaluated (i.e. populated) template markup is being added to the DOM:

function setup() {
    $.tmpl('home', $feed).appendTo('body');
    $('#home').attr('data-url','home');
    $('#home').page();
}

But my #home "page" still isn't showing up on-screen, even though the .page() initialisation is still called and I can see #home in the DOM.

Any ideas? :-(

link|improve this answer
I'm not sure why your situation is not working. The best I can come up with is that you are messing with 'home' and jQuery Mobile doesn't like that. Try using a static home and not a dynamically loaded one – Bobby May 3 '11 at 21:56
feedback

when you call $('#home').page(); you're asking jQuery to enhance your div with the page's specific stylesheet and the js functions. The page is already present in the DOM, but to show it you must call $.mobile.changePage("#home",options). for more information (and object-specific options), see http://jquerymobile.com/test/docs/api/methods.html

link|improve this answer
feedback

checkout icanhaz.js. that's what i'm using for client side templating

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.