Book Image

Creating Mobile Apps with jQuery Mobile - Second Edition

By : Andy Matthews, Shane Gliser
Book Image

Creating Mobile Apps with jQuery Mobile - Second Edition

By: Andy Matthews, Shane Gliser

Overview of this book

<p>jQuery Mobile is a mobile-centric web framework developed by the jQuery team. The project focuses on building a framework compatible with the ever-increasing variety of smartphones and tablet computers on the market. The jQuery Mobile framework plays well with other frameworks and platforms, such as PhoneGap and Backbone.</p> <p>Automate repetitive tasks easily and painlessly with the Grunt task runner, build a fully responsive, gorgeous photography website, and learn how to mix and match jQuery Mobile 1.4.5 into existing websites and how to deploy those changes to content management systems such as WordPress, Drupal, and HarpJS. jQuery Mobile aims to reach everyone, and so does this book. It will enhance your mobile knowledge and help you to create versatile, unique sites quickly and easily.</p>
Table of Contents (18 chapters)
Creating Mobile Apps with jQuery Mobile Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Getting the user to our mobile site


Now that we've got this great start to a mobile site, how does the user get there? yourdomain.mobi? m.yourdomain.com? The truth is, users don't go to mobile sites. They typically do one of two things; Google the site, or enter in the primary domain into the address bar, the same behavior they use on desktop sites. So, it falls on us to properly detect a mobile user and give them the appropriate interface.

There is much debate in the industry as to how this should be done. Most experts seem to agree that you do not want to get into the business of detecting specific platforms, a practice known as user-agent sniffing. At first, it doesn't seem such a bad idea. After all, there are only four major platforms, namely: iOS, Android, Windows Phone, and BlackBerry. Even still, this approach can quickly become a nightmare as new platforms are developed in the future or come into dominance. Here's the real question, why would we care what platform they're on? What...