Mobile navigation

One of the most prominent features of jQuery Mobile is its ability to simply transform the behavior of links on a page into Ajax-powered navigation. This transformation adds simple animation to the process, while preserving standard browser history navigation. To see this in action, we'll start with a document that presents links to information about several books (the same content we used for building a slideshow earlier) as follows:

<!DOCTYPE html>  <html>  <head>    <title>jQuery Book Browser</title>    <link rel="stylesheet" href="booklist.css" type="text/css" />   <script src="jquery.js"></script> </head>  <body>  <div>   <div>     <h1>Selected jQuery Books</h1>   </div>   <div>     <ul>  <li><a href="jq-game.html">jQuery Game Development ...

Get Learning jQuery 3 - Fifth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.