I do this to validate a username lenght and i didn't obtain any result.
function valider()
{
var long = "0";
long = document.inscription.Nomutil.lenght;
document.write(long);
if (document.inscription.Nomutil.lenght < 6)
{
alert("test"
}
else
{
alert("ok"
}
}
Could you help me?
function valider()
{
var long = "0";
long = document.inscription.Nomutil.lenght;
document.write(long);
if (document.inscription.Nomutil.lenght < 6)
{
alert("test"
}
else
{
alert("ok"
}
}
Could you help me?