1
Hello, I have the following structure
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<table>
<tr>
<th>Valor1</th>
<th>Valor2</th>
</tr>
<tr>
<td><input class="texto" type="text"></td>
<td><input class="texto" type="text"></td>
</tr>
<tr>
<td><input class="texto" type="text"></td>
<td><input class="texto" type="text"></td>
</tr>
</table>
I would like to compare if the value entered in the column valor1
already exists in the column valor2
, but the only form of identification I have is the class texto
You cannot add another class, id or date attribute to these inputs?
– Rafael Cavalcante