How can I make users auto-login in new chatbox?
3 posters
Page 1 of 1
How can I make users auto-login in new chatbox?
Hi all,
How can I make users auto-login in new chatbox?
How can I make users auto-login in new chatbox?
Last edited by Black-Shadow on February 11th 2015, 10:16 pm; edited 1 time in total
Re: How can I make users auto-login in new chatbox?
Simples as 1, 2, 3...
Check this part of the code
This will check if the user is logged every 30 seconds, you can change this to whatever you like.
If you want this "check" just one time, you can remove this part too. So the code will check if the user is logged every time he reload the page. (this is better!!)
Best regards.
- Code:
$(function() {
var chatbox_window = document.getElementById('frame_chatbox');
var iframewindow = chatbox_window.contentWindow ? chatbox_window.contentWindow : chatbox_window.contentDocument.defaultView;
var chat = iframewindow.chatbox;
function check_logged()
{
if( !chat.connected ) {
chat.connect();
}
}
check_logged();
setInterval(function() {
check_logged();
}, 30000);
});
Check this part of the code
- Code:
setInterval(function() {
check_logged();
}, 30000 );
This will check if the user is logged every 30 seconds, you can change this to whatever you like.
If you want this "check" just one time, you can remove this part too. So the code will check if the user is logged every time he reload the page. (this is better!!)
Best regards.
Re: How can I make users auto-login in new chatbox?
Hello @Wagner'
Thank you very much it solved as it seems.
Thank you very much it solved as it seems.
Re: How can I make users auto-login in new chatbox?
Topic solved and 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
» auto login chatbox?
» Chatbox Auto Login
» Chatbox auto Login
» Problem with chatbox auto-login javascript
» How to make users auto-transit between groups?
» Chatbox Auto Login
» Chatbox auto Login
» Problem with chatbox auto-login javascript
» How to make users auto-transit between groups?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum