
change button color in javascriptIn the program we will show you How do change button color using javascript .In javascript we are using onmouseover it is used to record mouse move.
Source code
<html>
<head>
<script type="text/javascript">
function changeColor(color)
{
document.getElementById('MyButton').style.background=color;
}
</script>
</head>
<body>
<p>Move...