<input type="radio" class="abc" id="clickMe" name="yes"/>Click me<br/>
<input type="radio" class="abc" id="clickMe" name="yes"/>Click me<br/>
<input type="radio" class="" id="changeMe" name="yes"/>Change me<br/>
<input type="checkbox" id="clickMea" name="yes"/>Click me<br/>
<script class="cssdeck" src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
$("#clickMea").on("click", function (e) {
$("#clickMea").on("click", function (e) {
//alert('clicked');
alert(e.target.checked);
return false;
});
/*
$("#changeMe").on("change", function () {
alert('changed');
});
$("#clickMe").prop("checked", true);
$("#changeMe").prop("checked", true);
document.write($("#clickMe").get(0).checked)
*/
$(".abc").change(function () {
alert("yes");
});