With questions such as these, especially if you're new to JavaScript, I suggest looking at the Mozilla Developers Network.
In the case, the information that you need on MDN can be found here. Here's a prevciew of what you'll find (taken directly from MDN):
Summary
Returns a reference to the element by its ID.
Syntax
element = document.getElementById(id);
where
- element is a reference to an Element object, or null if an element
with the specified ID is not in the document.
- id is a case-sensitive
string representing the unique ID of the element being sought.
Example
<!DOCTYPE html>
<html>
<head>
<title>getElementById example</title>
<script>
function changeColor(newColor) {
var elem = document.getElementById("para1");
elem.style.color = newColor;
}
</script>
</head>
<body>
<p id="para1">Some text here</p>
<button onclick="changeColor('blue');">blue</button>
<button onclick="changeColor('red');">red</button>
</body>
</html>