Updated lesson content function, genral clean up of js

This commit is contained in:
Jason White
2014-08-19 06:49:30 -04:00
parent e26dcf84a9
commit f2406eff52
16 changed files with 25 additions and 22 deletions

View File

@ -0,0 +1,5 @@
function displayGreeting(name) {
if (name != ''){
document.getElementById("greeting").innerHTML="Hello, " + name+ "!";
}
}