Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Mobile: Use same header footer for all pages

I'm trying to implement some code that will create the headers and footers on all of my web pages instead of hard coding them. I tried this:

I had this in my "main page" I just called wrapped the header I wanted in a div.

<div id="headerProto">
   <div data-role="header" data-position="fixed" data-theme="b">
       <h1> Title </h1>          
   </div> 
</div>

Then in the other pages I had:

<div class="headerChild">
</div>

And I added:

$(".headerChild").html($("#headerProto").html());

No dice. Either way that was a total guess on how I'm supposed to do it. Is there a better way?

like image 884
JoshDG Avatar asked Mar 08 '12 15:03

JoshDG


2 Answers

Using .load() may help, then just put the code you want to include in the file you are linking to.

$('.headerChild').load('pathto/headerProto.html')

An alternative way if you do not want to keep the data in a separate file: I have not done this but from some quick research you can also link to an element within the file.

$('.headerChild').load('pathto/mainPage.html #headerProto')
like image 145
atrljoe Avatar answered Oct 15 '22 02:10

atrljoe


Credit goes to mariachi.

http://forum.jquery.com/topic/jquery-mobile-fixed-header-and-footer-on-page-transition

I am just pasting his solution.

1.) Wrap your data-role="header" and put the id="constantheader-wrapper".


Mobile sidor

Use a div if you want to in the header wrapper, but try to have the full rendered header output like in this case, else it will loose the styling when you reload a page. NOTE! Put the header in your first page, then this method just add the header html to all the other pages.

2.) Put the function in file or inline script:

jQuery.fn.headerOnAllPages = function() {
    var theHeader = $('#constantheader-wrapper').html();
    var allPages = $('div[data-role="page"]');

    for (var i = 1; i < allPages.length; i++) {
        allPages[i].innerHTML = theHeader + allPages[i].innerHTML;
    }
};

3.) Call the function from document ready, for example:

$(document).ready(function() {
    $().headerOnAllPages();
});
like image 34
Zoha Khan Avatar answered Oct 15 '22 01:10

Zoha Khan