Getting started with jQuery

Slides:



Advertisements
Similar presentations
Getting Started with jQuery. 1. Introduction to jQuery 2. Selection and DOM manipulation Contents 2.
Advertisements

Using jQuery with ASP.NET SESSION CODE:MEO3 Mike Ormond,
Vishal Kumar 06131A1258. Why you’re going to love jQuery!
Philly.NET Hands-On jQuery + Plug-ins Bill Wolff, Rob Keiser.
Philly.NET Hands-on Labs JAVASCRIPT SERIES. July 9: JavaScript Syntax Visual Studio ◦Projects ◦Editors ◦Debugging ◦Script blocks ◦Minification and bundling.
JQUERY | INTRODUCTION. jQuery  Open source JavaScript library  Simplifies the interactions between  HTML document, or the Document Object Model (DOM),
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
Conor Russomanno & Elizabeth Umbrino. A popular free Javascript Library Released in January 2006 At BarCamp, an international network of user-generated.
Scripting Languages Client Side and Server Side. Examples of client side/server side Examples of client-side side include: JavaScript Jquery (uses a JavaScript.
1 What is JQuery. jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax* interactions.
Chapter 15 Introducing jQuery Part 1. What is JavaScript? A programming language to add dynamic features to a web page. Client side.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
SHAREPOINT & JQUERY. Hi, my name and I am a product manager at lightning tools. I have been working with SharePoint for 5 years.
JQuery “write less, do more”. jQuery - Introduction Simply a JavaScript library to simplify JavaScript programming itself Wraps long standard JavaScript.
Class02 Introduction to web development concepts MIS 3501, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 1/14/2016.
Introduction to JavaScript MIS 3502, Fall 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 9/29/2016.
Best Institutes offering Software Development courses.
JQuery Fundamentals Introduction Tutorial Videos
Form Data (part 2) MIS 3502, Fall 2015 Jeremy Shafer Department of MIS
Our Technologies Dr. Charles Severance
Introduction to web development concepts
Scripting the DOM MIS 3502, Fall 2016 Jeremy Shafer Department of MIS
Class01 Course Introduction
jQuery – Form Validation
User Interface Design and Usability jQuery, jQuery UI & jQuery Plugins
Section 17.1 Section 17.2 Add an audio file using HTML
Form Data (part 1) MIS 3502, Fall 2015 Jeremy Shafer Department of MIS
Introduction to AJAX MIS 3502 Jeremy Shafer Department of MIS
Introduction to JavaScript
Introduction to AJAX MIS 3502 Jeremy Shafer Department of MIS
Form Data (part 2) MIS 3501 Jeremy Shafer Department of MIS
A second look at JavaScript
jQuery The Easy JavaScript Nikolay Chochev Technical Trainer
A (gentle???) Introduction to JavaScript
JQuery with ASP.NET.
Form Data (part 2) MIS 3501 Jeremy Shafer Department of MIS
HTML5 APIs MIS3502 Jeremy Shafer Department of MIS
HTML and CSS MIS 2402 Jeremy Shafer Department of MIS
Sending a text message (and more)
Input CS 422: UI Design and Programming
Form Validation (with jQuery, HTML5, and CSS)
Form Validation, Part 2 (with jQuery, HTML5, and CSS)
JavaScript and the DOM MIS 2402 Jeremy Shafer Department of MIS
Numbers, strings and dates in JavaScript
MIS JavaScript and API Workshop (Part 3)
Introduction to AJAX and JSON
An Introduction to Animation
MIS JavaScript and API Workshop (Part 2)
Programming Control Structures with JavaScript Part 2
Name of Event Name of Event
Getting started with jQuery
An introduction to jQuery
Form Data (part 1) MIS3501 Jeremy Shafer Department of MIS
Introduction to JavaScript
An introduction to jQuery
Introduction to MIS3502 MIS 3502 Jeremy Shafer Department of MIS
MVC – Model View Controller
Introduction to MIS2402 MIS MIS2402 Jeremy Shafer Department of MIS
Getting started with jQuery
An introduction to jQuery
Ajax and JSON Jeremy Shafer Department of MIS Fox School of Business
Form Validation (with jQuery, HTML5, and CSS)
HTML MIS 2402 Jeremy Shafer Department of MIS Fox School of Business
Sending a text message (and more)
Ajax and JSON Jeremy Shafer Department of MIS Fox School of Business
Single Page Architecture (SPA)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
JavaScript and the DOM MIS 2402 Maxwell Furman Department of MIS
Presentation transcript:

Getting started with jQuery Jeremy Shafer Department of MIS Fox School of Business Temple University

Objectives

What jQuery feels like…

jQuery Described jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML. jQuery is the most popular JavaScript library in use today. jQuery is free, open-source software licensed under the MIT License. Initial release date: August 26, 2006; 10 years ago Created by American software engineer and entrepreneur, John Resig. John Resig is an alumni of the Rochester Institute of Technology. He was going to call it jSelect, but that name was already taken….

The $ function in jQuery

Linking to the jQuery library

jQuery selectors

OK… now what?

jQuery methods For the value of an input tag For the text of a node To move to the next element To submit a form To set the focus to an element

What about events?

It’s time for an experiment!