Selecting radio property through jquery
how to select value of through jquery. is it possible to select the radio button through its name p开发者_运维百科roperty..please any one help me
Try this
$(":radio[name='INSERTNAMEHERE']").bind("click", function(){
alert('you clicked on radio button name : INSERTNAMEHERE');
});
精彩评论