Doh...Solved it. Here's the answer for anybody else.
On the RadioButtonFor, introduce a new id :
Make the @id unique for each radiobutton then in JQuery as normal you can do:Code:@Html.RadioButtonFor(model => model.CustomerLoanOfVehicleValue, "FCL", new { @class = "optVehicleExt", @id = "FCL"})
Works!Code:$("#FCL").click(function () { ............ });




Reply With Quote