onclick to button change the page html js code example
Example 1: button click function in js
<script>
$(document).ready(function(){
$('#MyButton').click(function(){
CapacityChart();
});
});
</script>
<input type="button" value="Capacity Chart" id="MyButton" >
Example 2: onclick in js
<input type="text" name="text" id="test" onmouseover="skriv('klick')">
<input type="button" name="send" value="Skicka" id="klick" onclick="skriv('test')">
<script src="lib/script.js"></script>
function skriv(name) {
document.getElementById(name).style.backgroundColor='red';
}