pearlie-kyrie
Uploaded by
5 SLIDES
171 VUES
50LIKES

Essential JavaScript and HTML Tags for BIT 116 Scripting Course

DESCRIPTION

This document provides an overview of essential JavaScript and HTML tags used in BIT 116. Learn about key HTML elements like for headers and for paragraphs, which enhance text presentation. Understand JavaScript fundamentals such as data types, concatenation vs. addition, and functions like parseInt(), parseFloat(), and isNaN(). Explore DOM manipulation with document.getElementById() and form handling, including client-side validation techniques. Stay on track with upcoming assignments and quizzes to excel in your scripting journey.

1 / 5

Télécharger la présentation

Essential JavaScript and HTML Tags for BIT 116 Scripting Course

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. BIT 116:JavaScript

  2. 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: Scripting

  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: Scripting

  4. 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: Scripting

  5. Semi-colons • Don’t forget them – they’re required for this class!! • <script type=“text/javascript”> • alert(“Hello from BIT 116!”); • </script> BIT 116: Scripting

More Related