Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok so my phone app will have 2 pages. A login.html which is working fine. When I login it will change to a page called external.html. This is basically a frame with my headers and footers in them and content section. what I want to do now is call a remote page from my web server and load that into the content section of the external.html. Basically every link displayed will just load into the content section from the remote server. So in the code below I am doing a changepage to load in the content. Problem is when it loads in I lose my header, the footer gets all messed up, and I can no longer click on anything.

external.html

<!DOCTYPE html>
<html>
<head>
    <title>My Board</title>
</head>
<body onload="onBodyLoad()">

<!-- MAIN BOARD -->
<div class="body bck_tan" data-role="page" id="board_main">
    <div class="topbar" data-role="header" data-position="fixed" data-tap-toggle="false">
        <div class="topbar_contain">
            <div class="lft_icos"> 
                <!-- ALL ICON NAVIGATION MUST INCLUDE A ref paramneter that contains the name of the icon! -->
                <div class="lft_ico ico_topbar_back ln_sep_rt" ></div>
                <div class="lft_ico ln_sep_lft"></div>
            </div>
            <div class="rt_icos">
                <!-- ALL ICON NAVIGATION MUST INCLUDE A ref paramneter that contains the name of the icon! -->
                <div class="rt_ico ln_sep_rt"></div>
                <div class="rt_ico ico_topbar_rackit ln_sep_lft" ref="track"></div>
            </div>
        </div>
    </div><!-- /header -->

    <div data-role="content" class="app_content">   
        <div class="replaceme">
        </div>
    </div><!-- /content -->
    <div class="botbar" data-role="footer" data-position="fixed" data-id="footer"  data-tap-toggle="false">
        <div data-role="navbar" role="navigation">
            <ul class="botbar_contain">
                <li><a href="#"><div class="nav_ico ico_botbar_board tx_shdw_black_sm"  ref="board">board</div></a></li>
                <li><a href="#"><div class="nav_ico ico_botbar_me tx_shdw_black_sm" ref="me">me</div></a></li>
                <li><a href="#"><div class="nav_ico ico_botbar_freinds tx_shdw_black_sm" ref="freinds">freinds</div></a></li>
            </ul>
        </div><!-- /navbar -->
    </div>
</div><!-- /MAIN BOARD -->

function

$('.ico_botbar_freinds').click(function(){

    $.mobile.changePage('http://myserver.com/mypage.php', {
        pageContainer: $('.replaceme'),
        transition: 'slide'
    });
});

Page on remote server

<div class="body bck_tan" data-role="page" id="board_main">
    <div class="topbar" data-role="header" data-position="fixed" data-tap-toggle="false">
        <div class="topbar_contain">
            <div class="lft_icos"> 
                <!-- ALL ICON NAVIGATION MUST INCLUDE A ref paramneter that contains the name of the icon! -->
                <div class="lft_ico ico_topbar_back ln_sep_rt" ></div>
                <div class="lft_ico ln_sep_lft"></div>
            </div>
            <div class="rt_icos">
                <!-- ALL ICON NAVIGATION MUST INCLUDE A ref paramneter that contains the name of the icon! -->
                <div class="rt_ico ln_sep_rt"></div>
                <div class="rt_ico ico_topbar_rackit ln_sep_lft" ref="track"></div>
            </div>
        </div>
    </div><!-- /header -->


    <div data-role="content" class="app_content">
         This is test data from server
    </div>


<div class="botbar" data-role="footer" data-position="fixed" data-id="footer"  data-tap-    toggle="false">
        <div data-role="navbar" role="navigation">
            <ul class="botbar_contain">
                <li><a href="#"><div class="nav_ico ico_botbar_board     tx_shdw_black_sm"  ref="board">board</div></a></li>
                <li><a href="#"><div class="nav_ico ico_botbar_me tx_shdw_black_sm" ref="me">me</div></a></li>
                <li><a href="#"><div class="nav_ico ico_botbar_freinds     tx_shdw_black_sm" ref="freinds">freinds</div></a></li>
            </ul>
        </div><!-- /navbar -->
    </div>
</div><!-- /MAIN BOARD -->
share|improve this question
The problem might be the Jquery mobile. Fixed headers and footers are real headaches for JQM. Before proceeding, just put your board_main page into your local html file and change page. If the problem persist, than it is jqm. – noway Oct 2 '12 at 22:26

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.