jquery not working in internet explorer using mvc
Posted
by Barry
on Stack Overflow
See other posts from Stack Overflow
or by Barry
Published on 2010-05-06T13:39:14Z
Indexed on
2010/05/09
12:48 UTC
Read the original article
Hit count: 234
i have a group of radio buttons that are generated on the fly from the db into a partial control then rendered 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 in ie it doesnt work on the first select of a radio but only fires if u select something else ? any ideas wat the problem is ?
© Stack Overflow or respective owner