jQuery – Form Validation

Slides:



Advertisements
Similar presentations
CLASS INHERITANCE Class inheritance is about inheriting/deriving properties from another class. When inheriting a class you are inheriting the attributes.
Advertisements

PHP Conditions MIS 3501, Fall 2014 Jeremy Shafer Department of MIS Fox School of Business Temple University September 11, 2014.
JavaScript Frameworks Presented by Kyle Goins Also see:
1 What is JQuery. jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax* interactions.
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.
PDO Database Connections
Form Data (part 2) MIS 3502, Fall 2015 Jeremy Shafer Department of MIS
Organize your code with MVC
Introduction to web development concepts
Scripting the DOM MIS 3502, Fall 2016 Jeremy Shafer Department of MIS
Class01 Course Introduction
PHP: includes MIS 3501 Jeremy Shafer Department of MIS
Form Data (part 1) MIS 3502, Fall 2015 Jeremy Shafer Department of MIS
Class07 PHP: loops and includes
JQuery.
How to get data from a form
PHP Functions, Scope MIS 3501, Fall 2015 Jeremy Shafer
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
Getting started with jQuery
Ajax and JSON (jQuery part 2)
Organize your code with MVC
A (gentle???) Introduction to JavaScript

Introduction to relational databases and MySQL
Form Data (part 2) MIS 3501 Jeremy Shafer Department of MIS
Class07 PHP: loops MIS 3501 Jeremy Shafer Department of MIS
Class05 How to get data from a form
MySQL Backup, Transfer and Restore
HTML5 APIs MIS3502 Jeremy Shafer Department of MIS
PDO Revisited MIS 3502 Jeremy Shafer Department of MIS
HTML and CSS MIS 2402 Jeremy Shafer Department of MIS
Sending a text message (and more)
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)
An Introduction to JavaScript
Programming Control Structures with JavaScript Part 2
Class11 Introduction to relational databases and MySQL
Getting started with jQuery
Web Service Installation and Configuration
Sending a text message (and more)
An introduction to jQuery
Loops and Arrays in JavaScript
JavaScript objects, functions, and events
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
PDO and Arrays MIS 3502 Jeremy Shafer Department of MIS
Programming Control Structures with JavaScript
An introduction to jQuery
Ajax and JSON 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.)
JavaScript and the DOM MIS 2402 Maxwell Furman Department of MIS
Presentation transcript:

jQuery – Form Validation MIS 3502, Fall 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 10/27/2016

Agenda

Some other stuff… HTML5 type controls for input data HTML5 attributes for data validation

Back to jQuery

Other selector examples

But wait, there’s more…

jQuery plugins A jQuery plugin is simply a new method that used to extend jQuery's prototype object. By extending the prototype object you enable all jQuery objects to inherit any methods that you add. You can make your own plugins and use them privately in your code or you can release them into the wild. There are thousands of jQuery plugins available online. 

It’s time for an experiment!