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
- PHP: add a download as pdf file button in report page
- Formatting my post
- How to blend adsense inside your post?
- PHPWind-- A PHP forum script applcaition in China
- Google Adsense forum and pin number
- Promote your Forum/Blog/Website via major search Engines
- ActionScript 3.0 demo: create a falling snow in flash CS6
- Datatable export excel wraptext and newline
- Linux, automatically backup MySQL database daily
- Using Cron Job to process PHP scripts
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