I\'m trying to disable these radio buttons when a the loadActive link is clicked but for some reason it only disables the first in the order and then skips the rest.
Remove your "each" and just use:
$('input[name=ticketID]').attr("disabled",true);
That simple. It works
just use jQuery prop
prop
$(".radio-button").prop("disabled", false); $(".radio-button").prop("disabled", true); // disable