Hello,
I am using the following javascript for chatbox members auto-login but it conflicts other javascripts is there a way to fix it?
I am using the following javascript for chatbox members auto-login but it conflicts other javascripts is there a way to fix it?
- 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();
}, 3000);
});
Last edited by Black-Shadow on 24/2/2015, 08:39; edited 1 time in total