Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
haXe 2 Beginner's Guide

You're reading from   haXe 2 Beginner's Guide Develop exciting applications with this multi-platform programming language

Arrow left icon
Product type Paperback
Published in Jul 2011
Publisher
ISBN-13 9781849512565
Length 288 pages
Edition Edition
Languages
Arrow right icon
Toc

Table of Contents (21) Chapters Close

haxe 2
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Getting to know haXe FREE CHAPTER 2. Basic Syntax and Branching 3. Being Cross-platform with haXe 4. Understanding Types 5. The Dynamic Type and Properties 6. Using and Writing Interfaces, Typedefs, and Enums 7. Communication Between haXe Programs 8. Accessing Databases 9. Templating 10. Interfacing with the Target Platform 11. A Dynamic Website Using JavaScript 12. Creating a Game with haXe and Flash Pop Quiz Answers Index

Time for action – Using events from the DOM level 0


We are going to write a small example of using events from the DOM level 0.

In this example, we will have a table listing a user's first and last name. We will also have a simple form to add a user to the list. Everything will be managed only by JavaScript.

So, at first, let's create our HTML file with the markup for the table presenting our list of users and for our little form too.

We will also load our haXe generated JavaScript file:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

   <title>User List</title>
   
</head>

<body>
<!-- Create the table for the list -->
<table id="userList">
<tr id="formRow">
   <td><input type="text" id="formFirstName...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image