These are the radio buttons on my form
<input name="make" type="radio" value="Honda" id="radio-a"> Honda <input name="make" type="radio" value="Toyota" id="radio-b"> Toyota <input name="make" type="radio" value="Mazda" id="radio-c"> Mazda Using jquery how can I add another selection to the list? Something like $label.append('<input name="make" type="radio" value="Ford" id="radio- d"> Ford'); ? I can't figure out the syntax. Any help please. Thanks