Practical jQuery
Practical jQuery is your step-by-step guide to using jQuery in the real world, taking you from downloading jQuery all the way to extending it by writing your own plug-ins and testing the DOM using QUnit. jQuery is one of today’s most popular JavaScript we
- PDF / 6,459,603 Bytes
- 305 Pages / 504.06 x 720 pts Page_size
- 104 Downloads / 183 Views
Contents at a Glance About the Authors����������������������������������������������������������������������������������������������������xv About the Technical Reviewer�������������������������������������������������������������������������������xvii Acknowledgments��������������������������������������������������������������������������������������������������xix Introduction������������������������������������������������������������������������������������������������������������xxi ■Chapter ■ 1: Evolution of jQuery������������������������������������������������������������������������������� 1 ■Chapter ■ 2: Getting Started with jQuery��������������������������������������������������������������� 19 ■Chapter ■ 3: Traversing DOM with jQuery�������������������������������������������������������������� 39 ■Chapter ■ 4: DOM Manipulation with jQuery���������������������������������������������������������� 75 ■Chapter ■ 5: Events in jQuery��������������������������������������������������������������������������������� 99 ■Chapter ■ 6: Real World Events in jQuery������������������������������������������������������������� 129 ■Chapter ■ 7: Animation in jQuery������������������������������������������������������������������������� 151 ■Chapter ■ 8: Ajax with jQuery������������������������������������������������������������������������������� 195 ■Chapter ■ 9: Creating Plug-ins with jQuery���������������������������������������������������������� 211 ■Chapter ■ 10: Integrating Plug-ins with jQuery���������������������������������������������������� 229 ■Chapter ■ 11: Using jQuery Frameworks�������������������������������������������������������������� 245 ■Chapter ■ 12: Testing jQuery with QUnit��������������������������������������������������������������� 265 Index��������������������������������������������������������������������������������������������������������������������� 289
v
Introduction This book aims to provide information to developers who have worked on JavaScript and wish to gain hands-on experience with jQuery. It starts by reviewing some JavaScript concepts and forges ahead to establish the need for a standard framework. This need is addressed by this book, which explores jQuery as a JavaScript framework and covers further developments, with the aim of helping readers to become familiar with the way problems are solved using jQuery. Practical demonstrations are offered throughout the book, and the same examples are used across multiple demonstrations to ensure that readers receive a multidimensional view of the subject matter. The book concludes by providing information on how to test applications written in jQuery or JavaScript.
xxi
Chapter 1
Evolution of jQuery The first and foremost question that web developers about to start working on jQuery face is, Are JavaScript and jQuery related, or are they two completely different entities altogether? Although we could simply reply, yes, they are related, and move on, we will attempt in this chapter to introduce jQuery a
Data Loading...