Hello I'm looking to move the staff chatbox to right below the public chatbox, I have my public chatbox above the widgets on the home page using this code.
Full code after change
This above was what i used to move the public chatbox to the top of the widgets that JScript provided (thanks again)
Thank you for the help in advance.
- Code:
$('#' + chatbox_id).parent().detach().prependTo('#wrapper');
Full code after change
- Code:
document.getElementById(chatbox_id).innerHTML = '<iframe src="/chatbox/index.forum?archives=1" id="frame_chatbox" scrolling="no" width="100%" height="100%" marginwidth="0" marginheight="0" frameborder="0"></iframe>';
$('#' + chatbox_id).parent().detach().prependTo('#wrapper');
This above was what i used to move the public chatbox to the top of the widgets that JScript provided (thanks again)
Thank you for the help in advance.