hello
would be appreciated if someone can assist.
need to know if i have 2 buttons on a form and one is clicked , how to change colour of the other button.
is there something like ->onClick="id="button1.Colour.Blue"
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="button" id="button1" value="Button" style="color:Red"/>
<input type="button" id="button2" value="Button" style="color:Green" onClick="id="button1.Colour.Blue"/>
</body>
</html>
