i learning jquery validation from >> http://bassistance.de/jquery-plugins/jquery-plugin-validation/. I set custom message inline html, like this
<input name="pelatihan_performance" type="radio" value="1" required />
<input name="pelatihan_performance" type="radio" value="2" />
<input name="pelatihan_performance" type="radio" value="3" />
<input name="pelatihan_performance" type="radio" value="4" />
<input name="pelatihan_performance" type="radio" value="5" />
// error handler
<label for="pelatihan_performance" class="error">Harap pilih Kinerja</label>
but when i run this code, error just display "This field is required" not "Harap pilih Kinerja" . how to fix it ?
<input name="pelatihan_performance" type="radio" value="1" required data-msg-required="Harap pilih Kinerja"/>