A Pen by Alan Moore on CodePen.
A Pen by Alan Moore on CodePen.
A Pen by Alan Moore on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Note: We would normally get this data from | |
// a database via an HTTP server. This is just | |
// example data "hard coded" here for clarity. | |
var alanStudent = { | |
id: 1234, | |
firstName: "Alan", | |
lastName: "Moore", | |
age: 42, | |
birthdate: new Date(10, 24, 1964) |
A Pen by Alan Moore on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Note: depends on jQuery being included via Pen Settings --> | |
<input id="new-todo" type="text" onkeypress="checkForEnter(event);" /> | |
<button onclick="addToDo()" >Add</button> | |
<button onclick="deleteAll()">Delete All</button> | |
<ul id="todos"></ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script> | |
<input onkeydown="doit(event)" /> | |
<div id="second-div">Second DIV</div> | |
<div data="x">Third div</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Welcome to Connected Communities Academy! | |
In the course we will cover the following subject areas: | |
# Week 1 | |
## Introduction & HTML/CSS | |
## Monday: |