Skip to content

Commit

Permalink
fixed bug in example
Browse files Browse the repository at this point in the history
  • Loading branch information
robynitp committed Feb 12, 2015
1 parent bba96e0 commit 42f73e8
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions week3/05dom/create_dom_dynamic.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@
document.addEventListener("DOMContentLoaded", function(event) {
// array of names
var students = [
"Ainsley"
"Ashley"
"Caroline"
"Chrisanthy"
"Clare"
"Dinos"
"Hochien"
"Jaclyn"
"Jie"
"Jie"
"Julian"
"Pierre"
"Sisa"
"Tanya"
"Yang"
"Ainsley",
"Ashley",
"Caroline",
"Chrisanthy",
"Clare",
"Dinos",
"Hochien",
"Jaclyn",
"Jie",
"Jie",
"Julian",
"Pierre",
"Sisa",
"Tanya",
"Yang"
];
// get the <ul> unordered list element
var studentUl = document.getElementById("student_list");
Expand Down

0 comments on commit 42f73e8

Please sign in to comment.