I\'ve got the following code to trigger a click event on some radio buttons! but it doesn\'t get fired! can any one help me with this!
CODE :
A different way
$("#inline_content input[name='type']").change(function () { if ($(this).val() == "walk_in" && $(this).is(":checked")) { $('#select-table > .roomNumber').attr('enabled', false); } });
Demo - http://jsfiddle.net/cB6xV/