-1
I have a table which is loaded via ajax, in this way:
 $.each(data.listaNSerie, function (i, item) {
                $("#tableNSerie").append("<tr>"
                    + "<td>" + item.produto.codigo + "</td>"
                    + "<td>" + item.produto.nome + "</td>"
                    + "<td type='text' class='form-control'>" + "</td>"
                    + "</tr>");
            });
It works, and I get the data via controller, but when the user presses enter, because in the third column it is digitable, and is passed to the controller, he receives so: 265656/2<div>26626262626 /  26262626</div>, and he should receive so: 265656/226626262626/26262626, how to solve ??