From 873727666b36a7503438ac09db8a0ea28f5a6cb0 Mon Sep 17 00:00:00 2001 From: Danny Fritz Date: Tue, 3 Nov 2015 13:15:48 -0700 Subject: [PATCH] :books: Elude to other functions available for DOM querying --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca64ccc..3a64789 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,6 @@ Wire up the buttons to the left of the stoplight to toggle the on/off state of e ## Hints -* Retrieve a DOMElement with [`document.querySelector`](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector) -* Attach listeners with [`addEventListener`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) +* Retrieve a DOMElement with [`document.querySelector`](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector) or similar method +* Attach event listeners with [`addEventListener`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) * Set the color of a bulb with [`background-color`](https://developer.mozilla.org/en-US/docs/Web/CSS/background-color)