]> matita.cs.unibo.it Git - logicplayer.git/blob - public_html/logout.js
9817f6a5c68c6bcff55b3f281b850b938068e908
[logicplayer.git] / public_html / logout.js
1 function change()
2 {
3         document.location.href="index.html";
4 }
5 function logout()
6 {
7         $.ajax({
8                                         type: 'POST',
9                                         url: 'logout.php',
10                                         async: false
11                 }).success
12                         (
13                                                         function(response)
14                                                         {
15                                                                 change();
16                                                         }
17                         );
18 }