Posts by Takemura • 1 point
3 posts
-
0
votes2
answers57
viewsA: Remove from a table and insert that same row into another table
<!DOCTYPE html> <html> <head> <link rel="stylesheet"…
-
0
votes2
answers319
viewsA: Allow access to a URL by redirect only
If it’s just programming, you can use something with the "global variable" $_SESSION. With the exception of the page that gives permission, put in the others a command similar to this:…
-
0
votes2
answers57
viewsA: Remove from a table and insert that same row into another table
I think this should work: function trocaLinha(linha) { var conteudo = linha.innerHTML; var i=linha.parentNode.parentNode.rowIndex; document.getElementById('tabProximasTarefas').deleteRow(i); //ou…