forum

Home / DeveloperSection / Forums / jQuery Mobile “Error Loading Page”

jQuery Mobile “Error Loading Page”

Anonymous User 6339 10-Apr-2013
Hi Everyone!

I am using Jquery1.8.2 and Jquery-mobile 1.1

When i click on Logout button i have to goto the Home page. I am able get the home page but before going back to the home page got the "Error Loading Page" message.

Test.html

<body>  
  <div data-role="page">
      <div data-role="header" data-theme="b" >
          <h1> Success Page </h1>
           <a data-role="button" id="logoutbtn" data-theme="b">Logout</a>
       </div><!-- /header -->
       <div data-role='content'>            
    </div>
</div>
</body>
test.js

$(document).ready(function(){   
$("#logoutbtn").click(function () {     
    document.location.href = "Home.html";
});
});

Please help me out on this.

Updated on 15-Apr-2013
I am a content writter !

Can you answer this question?


Answer

2 Answers

Liked By