Hi everyone.. below are the tutorial how to make jQuery CheckBox and Enable Button.
lets check it out!
1. HTML Code
2. JS Code
Please click the link for TUTORIAL
Sekian Terima Kasih.
----------------------------------------------------------
Disediakan Oleh : Zainimar Binti Zulkifli
Sumber :https://codepen.io/oomusou/pen/OMKZPZ
lets check it out!
1. HTML Code
<div> <label for="myCheckbox"><input id="myCheckbox" type="checkbox"/>I Agree</lable> <p> <button id="myButton" disabled>Submit</button> </div>
2. JS Code
$(document).ready(function () { $('#myCheckbox').click(function () { $('#myButton').prop("disabled", !$("#myCheckbox").prop("checked")); }) });
Please click the link for TUTORIAL
Sekian Terima Kasih.
----------------------------------------------------------
Disediakan Oleh : Zainimar Binti Zulkifli
Sumber :https://codepen.io/oomusou/pen/OMKZPZ
0 comments:
Post a Comment