Skip to content

Instantly share code, notes, and snippets.

@Dilshan97
Created June 4, 2019 07:49
Show Gist options
  • Save Dilshan97/d0cd606f4e150416f9e95c14acba2ddd to your computer and use it in GitHub Desktop.
Save Dilshan97/d0cd606f4e150416f9e95c14acba2ddd to your computer and use it in GitHub Desktop.
JavaScript Background Color Changer
<!DOCTYPE html>
<html>
<body>
<button name="green" onclick="changeBgColor('green')">Success</button>
<button name="pink" onclick="changeBgColor('pink')">Info</button>
<button name="orange" onclick="changeBgColor('orange')">orange</button>
<button name="red" onclick="changeBgColor('red')">Danger</button>
<script>
function changeBgColor(p1) {
document.body.style.backgroundColor = p1;
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment