📚 Elude to other functions available for DOM querying

This commit is contained in:
Danny Fritz 2015-11-03 13:15:48 -07:00
parent d51b348fb3
commit 873727666b

View File

@ -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)