I have a group of radio buttons that are generated on the fly from db to a partial control and then displayed on the page as html, and they all have the same name now in firefox and chrome, the following code works fine
$(".FlightSelectedRadio").live('click', function() {
alert("after flight select");
$("#ToisGarantueedBid").attr("disabled", false);
});
however, i.e. It does not work the first time you select a radio, but only works if you choose something else? any ideas that might be related to the problem?
Barry source
share