Book Image

jQuery Mobile Web Development Essentials

By : Raymond Camden, Andy Matthews
Book Image

jQuery Mobile Web Development Essentials

By: Raymond Camden, Andy Matthews

Overview of this book

<p>jQuery Mobile is a unified, HTML5-based user interface system for all popular mobile device platforms. It is compatible with all major mobile, tablet, e-reader and desktop platforms like iOS, Android, Blackberry, Palm WebOS, Nokia/Symbian, and Windows Phone 7.<br /><br /><i>jQuery Mobile Web Development Essentials</i> will explain how to create mobile-optimized sites with the easiest, most practical HTML/JavaScript framework available and to add the framework to your HTML pages to create rich, mobile-optimized web pages with minimal effort.<br /><br />Throughout the book, you'll learn details that help you become a pro at mobile web development. You begin with simple HTML and quickly enhance it using jQuery Mobile for incredible mobile-optimized sites. Start by learning the building blocks of jQuery Mobile&rsquo;s component-driven design. Dig into forms, events, and styling, then finish by building native mobile applications. You will learn how to build websites and apps for touch devices such as iPhone, iPad, Android, and BlackBerry with the recently developed jQuery Mobile library through sample applications of increasing complexity.</p>
Table of Contents (19 chapters)
jQuery Mobile Web Development Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface

Before you begin


In this chapter, we're going to talk about forms and how jQuery Mobile enhances them. As part of our discussion, we will be posting our forms to the server. In order to have the server actually do something with the response we're going to make use of an application server from Adobe called ColdFusion. ColdFusion is not free for production use, but is 100% free for development and is a great server for building web applications. You do not need to download ColdFusion. If you do not, the forms you use within this chapter should not be submitted. This chapter does talk about how forms are submitted, but the response to the forms isn't really critical. If you know another language, like PHP, you should be able to simply mimic the code ColdFusion is using to echo back the form data.

ColdFusion (currently version 9) can be downloaded at http://www.adobe.com/go/coldfusion. Versions exist for Windows, OS X, and Linux. As stated above, you can run ColdFusion for free on your development...