I am using the jQuery mobile framework to build a mobile site and believe my button href attribute is not working which is the menu button running inline with the site branding in the header.
The button is supposed to send the user to the footer of the page when they click with the following code:
<a data-role="button" href="#mainFooter" data-icon="arrow-d" data-iconpos="left" class="headerbutton">Menu</a>
Then the corresponding div tag with an id of “mainFooter” is present is within the footer:
<div id="mainFooter" name="mainFooter"></div>
I am at a loss to understand why when the button is clicked is the user not sent to the footer. Please find a link to the web page below.
From the JQM Docs -> Page Anatomy Section:
You will need to implement a custom scroll potentially using $.animate() or similar.
EDIT
Something like may work for you:
I hope this helps!