Dynamically adding radio buttons using JQUERY and then hooking up the jquery change event to the gen
- by Barry
i am adding collection of radio buttons to my page using jquery below
$(document).ready(function() {
$("#Search").click(function() {
var keyword = $('#keyWord').val();
var EntityType = $("#lstEntityTypes :selected").text();
var postData = { type: EntityType, keyWord: keyword };
//…