3
The thing is, I have the following code:
$('body').on("click", ".delete", function() {
$('#1').val($(this).parents('tr').find('td').eq(0).text());
});
That goes to get the id
of a row of a corresponding table clicked row and I wanted to take that value and put it in the URL like this:
window.location('iframes/clientes_apagar.php?cliente_id="Aqui"')
Possible duplicate of Concatenate number sum to a string
– NoobSaibot
Turns out it didn’t work out at least the way I tried
– Shider
Alter
window.location('iframes/clientes_apagar.php?cliente_id="Aqui"')
forwindow.location.href = 'iframes/clientes_apagar.php?cliente_id="Aqui"';
– NoobSaibot