Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
 <table id="checkbox_div"><tr><td> 
 <ul>
<li><input type="radio"  name="theme" value="theme1"/>Theme1</li>
<li><input type="radio"  name="theme" value="theme2"/>Theme2</li>
<ul>
<li><input type="checkbox"  name="view1" />Tags</li>                        
</ul>
<li><input type="radio"  name="theme" value="theme3"/>Theme3</li>
<li><input type="radio"  name="theme" value="theme4"/>Theme4</li>
</ul>
   </td></tr> </table>
  
  </body>
</html>
 
$(document).ready(function() {
  $("#checkbox_div input:radio").click(function() {
    alert("clicked");
    
   });
  
  $("input:radio:first").prop("checked", true).trigger("click");
  
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers