I'm trying to change the colour of button BtnBus once its clicked on to stay changed. its pretty much 3 buttons bus/train/subway and whenever one is clickon I just want to change the colour to show its been selected. not sure how to do this. thanks for the help in advance
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<link rel="stylesheet" href="styles.css"
</head>
<body>
<script>
var btn = document.getElementById("BtnBus");
btn.onclick = ChangeColour(){
btn.style.backgroundColor = "red";
}
</script>
<div class="imglogo">
<img src="iconlogo.png" alt="lighthouseLogo" class="logo">
</div>
<form>
<h2> Chose Type of Transport </h2>
<table style="width:100%">
<button id="BtnBus">Bus</button> <br />
<br />
<button id="BtnTrain">Train</button> <br />
<br />
<button id="BtnSub">Subway</button> <br />
<br />
<button id="BtnSearch">Search</button> <br />
</form>
</body>
<footer>
<button class="Help">Help</button>
</footer>
</html>