I need your help. I have the following code:
$("input[numero='"+$("#jugada").val()+"']").each(function() {
var monto = $(this).attr("monto");
jugado = parseInt(jugado) + parseInt(monto);
})
I want to know how to do so in:
$("input[numero='"+$("#jugada").val()+"']").each
I can do the check for 2 attributes, the attribute number and another attribute at the same time.
Thank you very much for your help!