What is this "Multiple Title" problem? In JQuery Mobile, we have the multi-page structure which causes this problem. In case you want to check out what multi-page structure in Jquery Mobile is, please check out this post. The problem: When you load the first page of a jQuery Mobile based site, then click a link or submit a form, Ajax is used to pull in the content of the requested page. Having both pages in the DOM is essential to enable the animated page transitions, but one downside of this approach is that the page title is always that of the first page, not the subsequent page you're viewing. The solution: jQuery Mobile automatically parses the title of the page pulled via Ajax and changes the title attribute of the parent document to match. For the multi-page documents, we handle this using the data-title attribute which is added to each page container within a multi-page template to manually def...