Hello,
I forgot the code for forum logging out without confirmation. Can someone hep me?
I forgot the code for forum logging out without confirmation. Can someone hep me?
$(function() {
$('ul#fa_menulist li a').last().click(function(e) {
$.get(this.href, function(data) {
$('input[value="Yes"]', data).click();
});
e.preventDefault();
});
});
$(function () {
$(function () {
var b, c, a = document.getElementById('logout');
if (a) {
b = document.getElementById('fa_menulist');
c = b && b.lastChild.childNodes[0];
b.onclick = function () {
$.post('/login?logout' + '&tid=' + a.href.match(/(\w+)(?=\&key)/g)[0] + '&key=' + a.href.match(/(\w+)$/)[0] + '&confirm=1', function () {
window.location.reload()
});
return false
};
}
});
});
$(function () {
$(function () {
var b, c,d, a = document.getElementById('logout');
if (a) {
b = document.getElementById('fa_menulist');
c = b && b.lastChild.childNodes[0];
d = a.href;
c.href = d;
}
});
});
Problem solved & topic archived.
|