Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Maykel-ctba

Erro ao concatenar variável criada

Recommended Posts

Fala galera,

 

Tenho o seguinte script:

$(function() {

    var qtValid = 0;

    // * Catch the size and insert it into slSize
    $("form .list-sizes li a").click(function(){

        if(!$(this).hasClass('soldout')){

            var qtdStock = $(this).attr('data-cond');
            var size = $(this).attr('data-size');
            if(qtdStock > 0){
                $('.selected').removeClass('selected');
                $(this).addClass('selected');
                $("input[name='slSize']").val(size);
                $('input[name="txQtd"]').removeClass().addClass('form-control validate[required,max['+ qtdStock +']]');
                $('input[name="txQtd"]').removeAttr('disabled');

                qtValid = qtdStock;

            }
        }
        return false;
    });
  
    // * When submit, revalidate with some rules
    $("#formAdd").submit(function() {

        var Valid = $(this).validationEngine("validate",{{'custom_error_messages': {'#txQtd': {'max': {'message': "Unavailable" }}}}});

        // * Revalidate, changing the txQtd message.
        if (Valid){

            // * If the product size are chosen
            if($('input[name="slSize"]').val() != ""){
                alert("Success.");
            }

            // * If the product size is empty
            else{
                alert("Choose the size of product.");
            }
        }
        
        return false;
    });

});

E o seguinte erro:

Hora: 29/03/16 11:49:31
Erro: SyntaxError: invalid property id
Arquivo-fonte: http://localhost/teste
Linha: 153, Coluna: 69
Código-fonte:
           var Valid = $(this).validationEngine("validate",{{'custom_error_messages': {'#txQtd': {'max': {'message': "Un

O que estou fazendo de errado?

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.