Word warp for IE explorer(to correct chat room display properly when a user input long words without space , ' etc):
find
id='message_window'
in tpl_chat.php, replace with this:
<!-- Greedwind add force wordk-break!!important-->
<div style='height: 300px; overflow: auto;word-break:break-all;' id='message_window'></div>
find
<textarea id='msg'
in tpl_chat.php, replace with this
<!--Greedwind add col limit-->
<textarea id='msg' col='50' style='height: 65px; width: 570px;'></textarea>
add message lenght limiation:in tpl_chat.php
original code:
function msgboxSubmit(){
if(document.getElementById('msg').value == '') return;
function msgboxSubmit(){
if(document.getElementById('msg').value == '') return;
<!--greedwind message length limitation-->
var limitlength = 250;
if (document.getElementById('msg').value.length > limitlength) {
alert("Too much word input, leght of word should not exceed "+limitlength +" charaters.");
return;
}