Skip to content Skip to sidebar Skip to footer

How To Add Link List To JQuery Mobile Panel?

I am trying to add some buttons to j Query Mobile panel that would take me to the video div that is the sibling of home div. I did the following codes but it won't work.

Solution 1:

Add data-ajax="false" attribute to anchor, if you want to scroll to a div within the active page.

<div data-role="panel">
  <a href="#video" data-ajax="false">Videos</a>     
</div>

Post a Comment for "How To Add Link List To JQuery Mobile Panel?"