I didn't much care for the date and the seconds. I got rid of the bracket and put a simple dash between the time and the username.
Code:
var append = "AM";
var hour = date.getHours();
if(hour > 12) {
hour = hour - 12;
append = "PM";
}
if(hour == 0) {
hour = 12;
append = "AM";
}
ret = ret + hour + ":" +
((date.getMinutes() < 10) ? "0" : "") +
date.getMinutes() + " " + append + " - ";
The shoutbox is finally fixed.. Thanks again newhere. :up: