hi KWWHunction, i have a problem with my mobile website.
i have a listbox and when i click on a listitem then i want a button so i can go to the next page without going back everytime to the menu. now i have a problem, when i click on that button "<a href="#Smaak" data-role="button" data-icon="arrow-r" databack="trueaccesskey">Smaak</a>" it will go to that page, but it doesn't show the content. How can i make the link work so that the content will show when i click on that button?

i will show my code here:

(menu)

<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#Domein" id="nederlands_1">Domein</a></li>
<li><a href="#Smaak" id="nederlands_2">Smaak</a></li>
<li><a href="#Jaar" id="nederlands_3">Jaarspecificatie</a></li>
<li><a href="#Serveren" id="nederlands_4">Te Serveren bij</a></li>
<li><a href="#Info" id="nederlands_5">Samenstelling</a></li>
</ul>
</div>
<img src="images/logoke.jpg" width="120" height="120"/>
</div>

<!-- Domein info -->
<div data-role="page" data-theme="a" id="Domein" >
<div data-role="header">
<a href="#terug" data-role="button" data-icon="arrow-l" databack="trueaccesskey">Back</a>
<h1>Domein</h1>
<a href="#Smaak" data-role="button" data-icon="arrow-r" databack="trueaccesskey">Smaak</a>
</div>
<div data-role="content" id="n1_content">
<h3>
<?=(empty($row['domain']) ? 'Er is geen data beschikbaar' : $row['domain']);?>
</h3>
</div>
</div>

<!-- Smaak info -->
<div data-role="page" data-theme="a" id="Smaak" >
<div data-role="header">
<a href="#terug" data-role="button" data-icon="arrow-l" databack="trueaccesskey">Back</a>
<h1>Smaak</h1>
</div>
<div data-role="content" id="n2_content">
<h3>
<?=(empty($row['Flavour']) ? 'Er is geen data beschikbaar' : $row['Flavour']);?>
</h3>
</div>
</div>

i thank you Tjoepie!
Tjoepie Reviewed by Tjoepie on . mobile website issue hi KWWHunction, i have a problem with my mobile website. i have a listbox and when i click on a listitem then i want a button so i can go to the next page without going back everytime to the menu. now i have a problem, when i click on that button "<a href="#Smaak" data-role="button" data-icon="arrow-r" databack="trueaccesskey">Smaak</a>" it will go to that page, but it doesn't show the content. How can i make the link work so that the content will show when i click on that button? i will show Rating: 5