function validarURL(valor){ if(valor.length>0){ if (valor.indexOf('.') == -1) return false; else return true; } else return false; }