I use the icheck jquery plugin for style the input radio
I need to when checked the radio scroll to the special div id
<input type="radio" class="checkb" name="selectplan" value="P6302" id="P6302">
And script
<script>
$(document).ready(function () {
$('input').iCheck({
checkboxClass: 'icheckbox_square-red',
radioClass: 'iradio_square-red',
increaseArea: '20%' // optional
});
});
</script>