Estouro de pilha no IE com JQuery (na linha 12/1076)

Estou usando o JQuery do Google CDN e tenho recebido um erro de estouro de pilha (usando o IE8) nas linhas 12 (para o arquivo min) e 1076 (para o não compactado). O código JQuery na linha para a qual o erro de estouro de pilha me leva é:

JQuery.js ...

makeArray: function( array ) {
    var ret = [];

    if( array != null ){
        var i = array.length;
        // The window, strings (and functions) also have 'length'
        // @ALL : this is the line i am getting error on ...
        if( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval )
            ret[0] = array;
        else
            while( i )
                ret[--i] = array[i];
    }

    return ret;
},

...

Aqui está meu código: ...

  $(document).ready(function(){
    $("#newcmpgn").validate({ 
      errorElement:'dt', 
      rules:{agree: "required"},
      messages:{agree: "You need to accept to Terms and Conditions in order to continue."}
    });
    $("#newcmpgn").submit(function(){
      if($("#newcmpgn").valid()){
        var ubal = Number($("#userbalance").val());
        var camt = Number($("#amount").val());
        if(ubal > camt){
          $("#newcmpgn").attr('action', '<?= site_url('account/payments/actpayment/'.$cmpgn_id) ?>');
          return true;
        }
        if($("#autorenew").attr('value') == 'Y'){
          $("#newcmpgn").attr('action', '<?= site_url('account/payments/makepayment/'.$cmpgn_id) ?>');
        }else{
          $("#newcmpgn").attr('action', '<?= site_url('account/payments/makesinglepayment/'.$cmpgn_id) ?>');
        }
        $("#newcmpgn").submit();
        return true;
      }
      return false;
    });
  });

O erro está chegando ao enviar o formulário. Não consigo ver nenhum código recursivo aqui que faria o IE8 começar a chorar por ficar sem pilha?

Obrigado, Dw.

questionAnswers(1)

yourAnswerToTheQuestion