jquery mobile anchor links in a page -


i link different parts of html page using anchor tags , ids in jquery mobile framework. doesn't seem working in usual html tags. here's code tried. tips appreciated!

<div data-role="page"> ... <p> text continues.....  <id="1"> more text continues.....  <id="2"> more text continues.....  <id="3"> more text continues.....  <id="4"> more text continues.....  </p> ... <a href="#1" data-ajax="false">find #1</a> <a href="#2" data-ajax="false">find #2</a> <a href="#3" data-ajax="false">find #3</a> <a href="#4" data-ajax="false">find #4</a> </div> 

<id> isn't valid html tag.

you should using <a name="one"> anchor, , <a href="#one"> link.


Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -