Я пытаюсь использовать jQuery для отображения div, когда пользователь выбирает определенную радиокнопку (Other
) в группе радиокнопок.
HTML ниже
<div id="countries">
<input id="Washington_D.C" type="radio" name="location" value="Washington">Washington D.C</input>
<input id="Other" type="radio" name="location" value="">Other</input>
<div id="other locations" style="display: none">
</div>
</div>
Использование кода JQuery:
$(document).ready(function(){
$("radio[@name='location']").change(function(){
if ($("radio[@name='location']:checked").val() == 'Other')
$("#county_drop_down").show();
});
});
Но я не показываю div в других местах, когда я выбираю радиокнопку Other
.