I have a pair of radios, to which I assign a function using bind(), on the pages .ready event. then, on the same ready event, I check for another input\'s value, and if it\'s va
Just trigger the click event when you set the checked attribute.
checked
$("#fpago2").attr('checked', true).trigger('click');
Changing an attribute on the element doesn't fire a changed event... Neither by the native setAttribute or using jQuery's attr.