From 6d97f7d93a195f629987caf1413dbae651e6fc54 Mon Sep 17 00:00:00 2001 From: smarkham Date: Wed, 10 Apr 2013 16:59:26 -0700 Subject: [PATCH] added js script and call to steveMarkham() function --- hello.html | 2 ++ steveMarkham.js | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 steveMarkham.js diff --git a/hello.html b/hello.html index 1fd1524..a28e1f7 100644 --- a/hello.html +++ b/hello.html @@ -3,6 +3,7 @@ + Hello Team @@ -31,6 +32,7 @@ updateText(elisabeth(), textContent); updateText(bob(), textContent); updateText(robert(), textContent); +updateText(steveMarkham(), textContent); // Note: we need to add more function here for everyone to say hello. // append the text content to the document diff --git a/steveMarkham.js b/steveMarkham.js new file mode 100644 index 0000000..4f035a6 --- /dev/null +++ b/steveMarkham.js @@ -0,0 +1,3 @@ +function steveMarkham() { + return "Steve Markham says hello" +} \ No newline at end of file