Forum logout without confirmation
4 posters
Page 1 of 1
Forum logout without confirmation
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?
Re: Forum logout without confirmation
@Van-Helsing If you're talking about the Log out found in the toolbar, then add this to your JavaScripts:
- Code:
$(function() {
$('ul#fa_menulist li a').last().click(function(e) {
$.get(this.href, function(data) {
$('input[value="Yes"]', data).click();
});
e.preventDefault();
});
});
Re: Forum logout without confirmation
try:
- Code:
$(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
};
}
});
});
Ch@lo Valdez- Forumember
- Posts : 138
Reputation : 50
Language : spanish
Re: Forum logout without confirmation
more easy
- Code:
$(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;
}
});
});
Ch@lo Valdez- Forumember
- Posts : 138
Reputation : 50
Language : spanish
Re: Forum logout without confirmation
Hi dear all,
Thanks a lot, I adapt it to fit on my forum because. I am not using the fa toolbar so I made some changes to work.
My problem has been solved.
Thanks a lot, I adapt it to fit on my forum because. I am not using the fa toolbar so I made some changes to work.
My problem has been solved.
Re: Forum logout without confirmation
Problem solved & topic archived.
|
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» Logout Popup
» The logout link
» Won't let members logout?
» logout and i see myself online!
» Logout problem.
» The logout link
» Won't let members logout?
» logout and i see myself online!
» Logout problem.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum