Pentru depanarea câmpurilor „hidden”, modificabile prin javascript, se recomandă:
123
Se dă codul sursă HTML:
<input type="radio" id="selectie_1" value="1" name="selectie[adresa]">Adresa 1 <input type="radio" id="selectie_2" value="2" name="selectie[adresa]">Adresa 2 <input type="radio" id="selectie_3" value="3" name="selectie[adresa]">Adresa 3
Alegeți selectorii jQuery valizi pentru a obtine valoarea selectată:
#("[type=radio][id^=selectie]")
#("[type=radio][name=selectie[adresa]]:checked")
#("[type=radio][name=selectie[adresa]]")
#("[type=radio][id^=selectie]:checked")
1
Funcția
$("[type=radio][id^=selectie]").change
se execută: