jQuery検証を使用して、最初のボタンの前に表示されるラジオボタンのペアのエラーメッセージを取得しようとしています。
検証は次のとおりです。
errorPlacement: function(error, element) {
if (element.attr("type") == "radio")
error.insertBefore(element.first());
else
error.insertAfter(element);
}
これがhtmlです:
<div class="full">
<label id="sample">Have you received your sample pack?</label>
<input type="radio" name="sample" id="sample_yes" value="yes" />
<label for="eliteflexsample_yes">Yes</label>
<input type="radio" name="sample" id="sample_no" value="no" />
<label for="eliteflexsample_no">No</label>
</div>
現在、エラーは最初のラジオボタンの後に表示されています。