JavaScript Client-side

Slides:



Advertisements
Similar presentations
17 HTML, Scripting, and Interactivity Section 17.1 Add an audio file using HTML Create a form using HTML Add text boxes using HTML Add radio buttons and.
Advertisements

JavaScript is a client-side scripting language. Programs run in the web browser on the client's computer. (PHP, in contrast, is a server-side scripting.
JavaScript and AJAX Jonathan Foss University of Warwick
JavaScript FaaDoOEngineers.com FaaDoOEngineers.com.
Servers- Apache Tomcat Server Server-side scripts- Java Server Pages Java Server Pages - Xue Bai.
Web Development in Microsoft Visual Studio Slide 2 Lecture Overview Introduce Visual Studio 2013 Create a first ASP.NET application.
MSc. Publishing on WWW JavaScript. What is JavaScript? A scripting language devised by Netscape Adds functionality to web pages by: Embedding code into.
Kashif Jalal CA-240 (072) Web Development Using ASP.NET CA – 240 Kashif Jalal Welcome to week – 2 of…
Web Page Behavior IS 373—Web Standards Todd Will.
Chapter 11 Adding Media and Interactivity. Flash is a software program that allows you to create low-bandwidth, high-quality animations and interactive.
Javascript and the Web Whys and Hows of Javascript.
Mr. Rouda’s CSCI 101 sections. What does a web page consist of? Code HTML, CSS, XHTML, XML, etc. Images Gif, jpg, png, etc. Plugins Swf, flv, etc. JavaScript.
WaveMaker Visual AJAX Studio 4.0 Training Troubleshooting.
JavaScript Teppo Räisänen LIIKE/OAMK HTML, CSS, JavaScript HTML defines the structure CSS defines the layout JavaScript is used for scripting It.
VS.NET Syllabus By Peter Huang.
Overview of Previous Lesson(s) Over View  ASP.NET Pages  Modular in nature and divided into the core sections  Page directives  Code Section  Page.
McGraw-Hill/Irwin © 2004 by The McGraw-Hill Companies, Inc. All rights reserved. Dynamic Action with Macromedia Dreamweaver MX Barry Sosinsky Valda Hilley.
Advanced Web Design Scripting Tutorial Chapters. Scripting Intro The scripting part of the forthcoming Advanced Web Design textbook introduces you to.
CNIT 133 Interactive Web Pags – JavaScript and AJAX JavaScript Environment.
1 rfXcel Confidential Copyright 2007 Web Technology JavaScript 12/10/07.
Mr. Rouda’s CSCI 101 sections. What does a web page consist of? Code HTML, CSS, XHTML, XML, etc. Images Gif, jpg, png, etc. Plugins Swf, flv, etc. JavaScript.
Client side web programming Introduction Jaana Holvikivi, DSc. School of ICT.
The Web Architecture and ASP.NET. Slide 2 Review of the Web (1) It began with HTTP and HTML, which delivers static Web pages to browsers which would render.
Web Applications BIS4430 – unit 8. Learning Objectives Explain the uses of web application frameworks Relate the client-side, server-side architecture.
1 Geospatial and Business Intelligence Jean-Sébastien Turcotte Executive VP San Francisco - April 2007 Streamlining web mapping applications.
ASP.NET in Definition: 1.ASP.NET is a web application framework developed and marketed by Microsoft to allow programmers to build dynamic web sites,
Web Design Part I. Click Menu Site to create a new site root.
CSS1 Dynamic HTML Objects, Collections & Events. CSS2 Introduction Dynamic HTML treats HTML elements as objects. Element’s parameters can be treated as.
Ajax for Dynamic Web Development Gregory McChesney.
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.
HTML Forms.
Web Programming Introduction to Web Technology HTML & Dynamic web content.
JavaScript & Introduction to AJAX
 Before you continue you should have a basic understanding of the following:  HTML  CSS  JavaScript.
JavaScript and Ajax (JavaScript Environment) Week 6 Web site:
Introduction to ASP.NET development. Background ASP released in 1996 ASP supported for a minimum 10 years from Windows 8 release ASP.Net 1.0 released.
I NTRO TO W EB TECHNOLOGY Basic terms. C LIENT – S ERVER M ODEL a distributed communication between service requestors and service providers.
Teaching slides Chapter 6. Chapter 6 Software user interface design & construction Contents Introduction Graphical user interface – Rich window based.
Week-12 (Lecture-1) Cascading Style Sheets (CSS): describe how documents are presented on screens. Types of Style Sheets: External Style Sheet - Define.
Module 1 Introduction to JavaScript
20 Adobe Dreamweaver® CS3.
Applied Component I Unit II Introduction of java-script
Chapter 5 Scripting Language
Introduction to ASP By “FlyingBono” 2009_01 By FlyingBono 2009_01
Lecture Bells and Whistles.
Section 17.1 Section 17.2 Add an audio file using HTML
Web Development & Design Foundations with HTML5 7th Edition
Asynchronous Java script And XML Technology
Chapter 5 Scripting Language
By Gary Mandela December 26, 2006
AJAX.
Introduction to JavaScript
Web Development in Microsoft Visual Studio 2013
JavaScript Introduction
IS 360 Course Introduction
Web Development Using ASP .NET
JQuery with ASP.NET.
Events Comp 205 Fall 2017.
ASP.NET Module Subtitle.
Introduction to JavaScript
Secure Web Programming
Teaching slides Chapter 6.
Server Side Includes Server Side Includes (SSI) are simply this:
Introduction to JavaScript
Introduction to Programming and JavaScript
ASP.NET Imran Rashid CTO at ManiWeber Technologies.
CNIT 133 Interactive Web Pags – JavaScript and AJAX
Introduction to Web programming
© 2017, Mike Murach & Associates, Inc.
Presentation transcript:

JavaScript Client-side

<script language=“JavaScript”>

Where does it go? In the header In the body Inside the tags Sound familiar?

Why use JavaScript instead of Asp.NET? Client-side Can be put into a purely html file save on download time cut down on the server load safer gives no access to server-side scripting; tested without having a server needs no special server configuration

Uses Basics Event handlers Cookies Status bar messages Opening a new window Managing frames Image rollovers Drop-down list that navigates to a new window Cookies

Most major reason to use JavaScript Asynchronous Merge with CSS & XML you get the AJAX framework

TO DO Oasisplus Read NEXT WEEK Basic JavaScript Activities Using JavaScript Along with ASP.NET 2.0 http://msdn.microsoft.com/en-us/library/aa479390.aspx NEXT WEEK XML (introduction)