Chapter 15 Introducing jQuery Part 1
What is JavaScript? A programming language to add dynamic features to a web page. Client side
What is jQuery? A JavaScript Framework
test.html Script 15.1 on page ch15\script_15_01\test.html
Incorporate jQuery Library
test.html Script 15.2 on page html html ch15\test.html
test.js ch15\js\test.js $(document).ready(function() {…}); $(function(){…});
calculator.html Script 15.4 on page lator1.html lator1.html ch15\script_15_4\calculator.html
calculator.js Script 15.5 on pages ch15\js\script_15_5\calculator.js
Event Handling selection.eventType(function); $('#calculator').submit(function() {…};