From: Alpha Omega on
ciao a tutti,

questo semplice controllo sullo username su un form:

<script src="http://code.jquery.com/jquery-latest.js"></script>

<script type="text/javascript"
src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>

<script type="text/javascript">
window.onload = (function(){
$("#register_form").validate({
rules: {
username: {
required: true,
minLength: 3
}
}
}
}
</script>

da il seguente errore nella console javascript di firefox (Vers. 3.6.3),
ad ogni carattere digitato nel campo username:

" Avviso: Non si dovrebbe usare la propriet� 'charCode' di un evento
keyup: il valore non � significativo. "

Da cosa dipende questo errore?


From: Thomas 'PointedEars' Lahn on
Alpha Omega wrote:

> <script src="http://code.jquery.com/jquery-latest.js"></script>
> [...]
> da il seguente errore nella console javascript di firefox (Vers. 3.6.3),
> ad ogni carattere digitato nel campo username:
>
> " Avviso: Non si dovrebbe usare la proprietà 'charCode' di un evento
> keyup: il valore non è significativo. "
>
> Da cosa dipende questo errore?

E uno *avviso*, _non_ un errore. Conclusione: Non usare jQuery.

[en] It is a *warning*, _not_ an error. Bottom line: Do not use jQuery.


PointedEars
--
Anyone who slaps a 'this page is best viewed with Browser X' label on
a Web page appears to be yearning for the bad old days, before the Web,
when you had very little chance of reading a document written on another
computer, another word processor, or another network. -- Tim Berners-Lee
From: David Mark on
On Jul 21, 4:26 am, Alpha Omega <alpha.omega1...(a)gmail.com> wrote:
> ciao a tutti,
>
> questo semplice controllo sullo username su un form:
>
> <script src="http://code.jquery.com/jquery-latest.js"></script>
>

jQuery è una libreria molto male. I suoi sviluppatori sono troppo
ignorante per creare un buon compromesso. Non utilizzare in nessun
caso.