I have this input element with id "sku"
I am using this function
sku.keyup(function(){
if($("#sku").val().length < 4)
{
$("#sku").attr("class","error");
}else
{
$("#sku").attr("class","ok");
}
})
$('#sku').blur(function(){
if($("#sku").val().length < 4)
{...
Hi Guest we just wanted to alert you to a major change in the forum. We will no longer be allowing the posting of outgoing links. Please use the attachment feature to attach media to your posts.