I\'m having trouble after looking at the jQuery docs. I\'m just trying to return true/false in one my my jquery methods depending on the check of a certain radiobutton and
Your selector won't select the input field, and if it did it would return a jQuery object. Try this:
$('#test2').is(':checked');