My code includes a submit button that is currently disabled. I am looking to enable it when the user clicks on the "I agree" checkbox using jQuery. Can someone assist me with this? My code is written in HTML, JavaScript, and jQuery.
<input id="agree" type="checkbox" name="agree">I agree to the terms of service...<br><br />
<div align="center">
<button style="color: white; background-color: gray; width: 100px; height: 30px;" type="submit" disabled><b><font color="black">Register</font></b></button>
</div>