Good Day,
I have a table of radio buttons that have an ID value that contains an item number
How can I use jQuery to iterate through all the radio buttons that start with "rb" to determine which # number was selected?
I have something like:
return_type = $("input:radio["@name=rb*"]:checked").val();
if (return_type == undefined) {
alert("you did not select a radio button");
}
but this doesn't work the way I selected. Is this right?
TIA,
coson