Posts by Renato Castellani • 24 points
2 posts
-
1
votes1
answer280
viewsA: Log out when browser close or log out
You could try using the 'onunload' function' <body onunload="funcaoEventoSair()"> <script> function funcaoEventoSair() { alert("SAIR"); // colocar sua lógica de log off aqui }…
-
-1
votes2
answers457
viewsA: How to take out the white space in this html
change the line: <body class="body" style="border:0; margin: 6;"> To: <body class="body" style="border:0; margin: 0;">