with a value of javascript:onclick=resizeWindow()

Slides:



Advertisements
Similar presentations
Working with Forms. how are forms manipulated? the document object contains an array of forms objects, one for each form, in document order –forms[] any.
Advertisements

WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
Multiple Tiers in Action
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Google Maps API. Static Maps send an HTTP GET request receive an image (PNG, GIF, JPEG) no javascript needed encode params in URL example:
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.
Title, meta, link, script.  The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for.
12 1 Redirection CGI/Perl Programming By Diane Zak.
Scripting Language A scripting language or script language is a programming language that supports the writing of scripts. The term script is typically.
Scripts Chapter Scripts Small programs used to add interactivity to your web pages The backbone of Dynamic HTML (DHTML) Most scripts are written.
An Introduction to JavaScript By: John Coliton Tuesday, November 10, 1998 Center for Teaching and Learning.
HTML JAVASCRIPT. CONTENTS Javascript Example NOSCRIPT Tag Advantages Summary Exercise.
HTML Overview Part 5 – JavaScript 1. Scripts 2  Scripts are used to add dynamic content to a web page.  Scripts consist of a list of commands that execute.
CO1552 – Web Application Development Further JavaScript: Part 1: The Document Object Model Part 2: Functions and Events.
COS 125 DAY 20. Agenda Assignment 8 not corrected yet Assignment 9 posted  Due April 16 New course time line Discussion on Scripts 
Javascript JavaScript is what is called a client-side scripting language:  a programming language that runs inside an Internet browser (a browser is also.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
Web Technology (NCS-504) Prepared By Mr. Abhishek Kesharwani Assistant Professor,UCER Naini,Allahabad.
Java Script. What is JavaScript ? It is an scripting language, developed by Netscape Navigator. It can be used to replace CGI scripts for client-side.
Step 1: Starting an HTML Document: Right Click: new>text document.
Follow Up. Can one change the appearance of the alert/confirm/prompt box? The default Alert box can be customized (or over-ridden) by JavaScript + CSS.
JavaScript, Third Edition 1 SELECTION LIST Demo. JavaScript, Third Edition 2 Description This web page will edit the slection to ensure an option was.
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
Apache Wookie (Incubating)
Web Basics: HTML/CSS/JavaScript What are they?
Moving away from alert() Using innerHTML Using an empty div section
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
With Microsoft FrontPage 2000
Introduction and Principles
Introduction to PHP FdSc Module 109 Server side scripting and
Enabling/Disabling JavaScript
JavaScript Wrap-up.
JavaScript - Errors & Exceptions Handling
Multi-level Navigation
Intro to JavaScript CS 1150 Spring 2017.
JavaScript (JS) Basics
JavaScript Loops.
FORMS Explained By: Sarbjit Kaur.
Web Development & Design Foundations with HTML5 7th Edition
Getting web pages First we need to get the webpage by issuing a HTTP request. The best option for this is the requests library that comes with Anaconda:
Intro to Web Development Class A Review
HTML/XHTML Forms 18-Sep-18.
Google Maps: A Short How-to
Introduction to JavaScript
Servlets and JSP 20-Nov-18 servletsJSP.ppt.
מבנה בסיסי של מסמך html מסמך ב- html מורכב מתגיות.
Introduction to JavaScript
HTML Tags and References to other Files
© copyright Janson Industries 2011
The Web Wizard’s Guide To JavaScript
Introduction to JavaScript
Intro to Web Development First Web Page
Unit 6 part 3 Test Javascript Test.
Unit 2 Test Building a Web Page Test.
Javascript.
HTML Structure.
Javascript and JQuery SRM DSC.
Document Object Model.
Common Page Design Elements
Cookie and Session Bayu Priyambadha, S.Kom.
HTML Forms 18-Apr-19.
Introduction to Programming and JavaScript
Cookies and Sessions.
The <script> Tag
JavaScript and Ajax (JavaScript Events)
CNIT 133 Interactive Web Pags – JavaScript and AJAX
Introduction to JavaScript
HTML Tags and References to other Files
For the CIS17 course..
Presentation transcript:

with a value of javascript:onclick=resizeWindow() This box has a tag named JAVASCRIPT with a value of javascript:onclick=resizeWindow() Convert the presentation to HTML using the template below, load the result into MSIE and click the box above. May not work in other browsers. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <TITLE>:Prefs.PageTitle:</TITLE> <script type="text/javascript"> function resizeWindow() { top.resizeBy(-100,-100); } </script> </head> <body> :Nav.Map: <CENTER><IMG SRC=":Slide.Image:" WIDTH=:Slide.Image.Width: BORDER="NO"></CENTER><BR> <center>:Nav.LinksToAll:</center> </body> </html>