Javascript examples for jQuery:Form Button
jQuery Make Radio Button not clickable
<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>