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 web application development frameworks and libr...

Descripción completa

Detalles Bibliográficos
Autores principales: Kumar, Ankur. author (author), Chaudhary, Mukund. author
Formato: Libro electrónico
Idioma:Inglés
Publicado: Berkeley, CA : Apress 2015.
Edición:1st ed. 2015.
Colección:Expert's voice in Web development.
Materias:
Ver en Biblioteca Universitat Ramon Llull:https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009629664506719
Tabla de Contenidos:
  • Contents at a Glance; Contents; About the Authors; About the Technical Reviewer; Acknowledgments; Introduction; Chapter 1: Evolution of jQuery; Traditional JavaScript Basics; The Window Object; Methods; Attributes; Child Objects; The Document Object; The History Object; The Location Object; The Navigator Object; The Screen Object; Old School Challenges; Challenges Pertaining to the Window Object; Challenges Pertaining to the Document Object; Challenges Related to the Globals; Need for a Revolution; Who Was the Revolutionary?; Why jQuery?; Minimal and Easy Coding
  • Readable/Clean Code Easy CSS Handling; Animation Methods; Intuitive Function Calls; Summary; Chapter 2: Getting Started with jQuery ; Document Object Model (DOM) ; Downloading and Setting Up jQuery; Downloading from the Official Web Site ; Including jQuery from a CDN ; Clone from GitHub; jQuery Fundamentals ; jQuery Syntax ; Document Ready Event ; jQuery noConflict() Method ; jQuery Selectors ; Selector Examples; Selector Fact Files ; Use of ID-Based Selectors ; Be Specific but Avoid Excessive Specificity; Don't Repeat Selectors; Avoid the Universal Selector
  • Working with jQuery The Problem Statement ; The Anonymous Function ; Preloading Images with jQuery; each() in jQuery; Summary; Chapter 3: Traversing DOM with jQuery; Selecting Elements with CSS Selectors ; Type Selector ; Universal Selector ; Attribute Selector ; Class Selector ; ID Selector ; Pseudo Class Selector ; Relationship-Based Selectors ; Using jQuery Selectors ; Type Selector ; Universal Selector ; Attribute Selector ; Class Selector ; ID Selector ; Pseudo Class Selector ; Other jQuery Selectors; Traversing DOM with jQuery Traversal Methods
  • jQuery innerWidth() and innerHeight() Methods