jQuery Make Radio Button not clickable - Javascript jQuery

Javascript examples for jQuery:Form Button

Description

jQuery Make Radio Button not clickable

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.4.2.js"></script> 
      <script type="text/javascript">
    $(function(){//from   w ww . j  ava 2  s.  c om
$(':radio').click(function(){
    this.checked=false;
})
    });

      </script> 
   </head> 
   <body> 
      <input type="radio">  
   </body>
</html>

Related Tutorials