Online computer courses, code, programming tutorial and sidebar information for monitoring Canadian S&P/TSX index. Build friendship and networking. Welcome to visit my blogs often!!! I also have two other sites: YouTube Channel and Google site.
Adsense
Popular Posts
- PHPWind-- A PHP forum script applcaition in China
- How to blend adsense inside your post?
- Formatting my post
- Notepad++ - Add C++ compiler
- Install PHPMailer 5.2.4 and use smtp gmail
- Wayback Machine - see archived versions of web pages across time
- Set up a child account and set screen time limit in Windows 8
- phpexcel toggle expand and hide column in EXCEL and summary
- Install PHP ibm_db2 extension in Linux (redHat)
- PHP: add a download as pdf file button in report page
Tuesday, March 5, 2013
JavaScript: enable or disable radio buttons
Sometimes in HTML form, when users answer yes, they can continue for more selections. If they answer no, the next selection is disabled. In the following example, if you select yes under competency, you can continue to select hard skill or soft skill. If you select no, the hard skill and soft skill selections are disabled.
Example code:
<script type="text/javascript">
function disablecheckbox()
{
document.getElementById('skill').disabled=true;
document.getElementById('skill2').disabled=true;
document.getElementById('skill').checked=false;
document.getElementById('skill2').checked=false;
}
function enablecheckbox()
{
document.getElementById('skill').disabled=false;
document.getElementById('skill2').disabled=false;
}
</script>
Competency<br />
<input type="radio" name="c1" onfocus="enablecheckbox();" />
Yes
<input type="radio" name="c1" onfocus="disablecheckbox();"/>
No<br />
If yes:
<input type="radio" id="skill" name="s1" disabled="disabled" />
hard skill
<input type="radio" id="skill2" name="s1" disabled="disabled" />
soft skill<br />
Demo: when you click no, hard skill and soft skill selections are disabled.
Competency
Yes No
If yes: hard skill soft skill
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment