I am trying to create a form of radioboxes where you can select them simply by mousing over without any clicking. I can't figure out how to do this, my current code doesn't work. Any ideas why? Thanks!
<script>
$(document).ready(function () {
$('.my_checkboxes').mouseover(function () {
$(this).find('boxclass').click();
});
</script>