Skip to content

Instantly share code, notes, and snippets.

@crazylion
Created January 9, 2010 15:09
Show Gist options
  • Save crazylion/272935 to your computer and use it in GitHub Desktop.
Save crazylion/272935 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
var limit=1;
$(":radio.voting").click(function(){
var count = $(":radio.voting:checked").size();
if(count>limit){
$(this).attr("checked",false);
return false;
}else{
return true;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment