BIT 116:JavaScript. A few useful (binary) HTML tags: h1 –Level 1 header: big and bold p –Paragraph (enforces line space before/after) b –bold i –italic.

Slides:



Advertisements
Similar presentations
Javascript Essentials How do I write it??  Start Homesite  Between the start and end BODY tags type: 
Advertisements

CIS101 Introduction to Computing Week 07. Agenda Your questions JavaScript text Resume project HTML Project Three This week online Next class.
CIS101 Introduction to Computing Week 07. Agenda Your questions Resume project Review Project Two HTML Project Three This week online Next class.
Basic HTML UCR Webmasters Support Group Derk Adams.
The Information School of the University of Washington Oct 20fit programming1 Programming Basics INFO/CSE 100, Fall 2006 Fluency in Information Technology.
CIS101 Introduction to Computing Week 09 Spring 2004.
JavaScript innerHTML. Changing Text with innerHTML Each HTML element has an innerHTML property that defines both the HTML code and the text that occurs.
CGS – 4854 Summer 2012 Web Site Construction and Management Instructor: Francisco R. Ortega Date: May 5 th,2012.
Web Programming – Java Script Association of Computing Activities Computer Science and Engineering Indian Institute of Technology Kanpur.
Javascript and the Web Whys and Hows of Javascript.
Ku-Yaw Chang Assistant Professor, Department of Computer Science and Information Engineering Da-Yeh University.
JavaScript: Control Structures September 27, 2005 Slides modified from Internet & World Wide Web: How to Program (3rd) edition. By Deitel, Deitel,
 2003 Prentice Hall, Inc. All rights reserved. CHAPTER 3 JavaScript 1.
Lectured By: Vivek Dimri Asst. Professor, SET, Sharda University
1 Essential HTML coding By Fadi Safieddine (Week 2)
The Web Wizard’s Guide To JavaScript Chapter 6 Working with Dates and Times.
Introduction to HTML Today we will look at: Separating style and content The purpose of a text editor such as Notepad How web-pages are made Creating a.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
 2003 Prentice Hall, Inc. All rights reserved. CHAPTER 3 JavaScript 1.
20-753: Fundamentals of Web Programming 1 Lecture 12: Javascript I Fundamentals of Web Programming Lecture 12: Introduction to Javascript.
CREATING WEB PAGES Using…More HTML code! My First \ Web Page.
Dynamic Pages – Quiz #11 Feedback (under assignments) Lecture Code:
1 Chapter 18 Programming Basics When it comes to being precise about an algorithm, a programming language is better than English.
BIT 116:JavaScript. BIT 116: Scripting2 Today Ch 9: Object Oriented Programming, Part 1 –Random numbers –Basic OOP stuff Reading quiz turned in?
Introduction.  The scripting language most often used for client-side web development.  Influenced by many programming languages, easier for nonprogrammers.
Intro to PHP IST2101. Review: HTML & Tags 2IST210.
HTML— More Tags, Formatting, and Lists. Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )
CS346 Javascript -3 Module 3 JavaScript Variables.
Intro to JavaScript. Some simple examples Examples from our webpage Examples from Andrews webpage Today’s Example.
1 JavaScript
JavaScript Scripting language What is Scripting ? A scripting language, script language, or extension language is a programming language.
Variables and Data Types Data (information we're going to store) – Numbers – Text – Dates What types of data can JavaScript process? How do we store it?
05 – Java Script (1) Informatics Department Parahyangan Catholic University.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
Loops.  (No Quiz)  Hand in Assignment #1  Last chance for Q+A on the midterm  Loops 2.
Web Development Lecture # 09 Text Formatting in HTML.
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.
JavaScript Challenges Answers for challenges
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
CIS 3.5 Lecture 2.3 "Introduction to JavaScript".
CST336, Dr. Krzysztof Pietroszek Week 2: PHP. 1.Introduction to PHP 2.Embed PHP code into an HTML web page 3.Generate (output HTML) web page using PHP.
Thesis Presentation IV – Fall Midterm Review NewMediaArts art 249 :: interface design II week 12 :: b.
PHP Syntax You cannot view the PHP source code by selecting "View source" in the browser - you will only see the output from the PHP file, which is plain.
Javascript Intro Instructor: Shalen Malabon. Lesson Plan Core Javascript Syntax Types and Objects Functions DOM Event Handling Debugging Javascript Smarter.
GetElementById changes outside forms. From form to page  Identified the field by using name  Form.field  Outside a form, use id  Unique on the page.
1 CSC160 Chapter 1: Introduction to JavaScript Chapter 2: Placing JavaScript in an HTML File.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
BIT 116:JavaScript. BIT 116: Scripting2 Today Chapter 5: Repetition, Arrays Chapter 6: Functions –Ch 6 Reading quiz will be due NEXT lecture.
JavaScript Part 1 Introduction to scripting The ‘alert’ function.
Week-12 (Lecture-1) Cascading Style Sheets (CSS): describe how documents are presented on screens. Types of Style Sheets: External Style Sheet - Define.
Introduction to Calculated Columns Variables, Conditionals, and String Manipulation PRESENTER: Cameron Blashka| Informer Implementation Specialist| April.
>> Form Data Validation in JavaScript
Introduction to.
IS1500: Introduction to Web Development
Exam3 Review CSE111 B.Ramamurthy 7/28/2018 B.Ramamurthy.
JavaScript Syntax and Semantics
Introduction to JavaScript
Javascript Conditionals.
Introduction to JavaScript
A second look at JavaScript
WEB PROGRAMMING JavaScript.
An Introduction to JavaScript
Introduction to JavaScript
HTML Basics.
The Web Wizard’s Guide To JavaScript
Murach's JavaScript and jQuery (3rd Ed.)
Presentation transcript:

BIT 116:JavaScript

A few useful (binary) HTML tags: h1 –Level 1 header: big and bold p –Paragraph (enforces line space before/after) b –bold i –italic BIT 116: Scripting2

3 Due Dates Due today: –Chapter 2 Reading Quiz In-class: ICE 2 (spans today & next class) Due next lecture: –Nothing Due in a week (Wed, Oct 12) –Assignment 1 –Chapter 3 Reading Quiz

BIT 116: Scripting4 Today (and beyond) Data Types –concatenation vs addition –parseInt(), parseFloat(), and isNaN() document.getElementById() Forms –purpose (server- vs client-side) –basic structure –using JavaScript with forms –.value –validation (easily circumvented, but useful) –String emptiness, equality –.innerHTML

BIT 116: Scripting5 Semi-colons Don’t forget them – they’re required for this class!! –alert(“Hello from BIT 116!”);