Oh my god... the Shout box's redirection isn't working in IE 6. I just notice it after my dad told me about this... Before this, nobody encounter any problem ??? Or nobody is surfing my site using IE (impossible) ???
Please report any problem, error or weird CSS rendering and let me know which browser you're using. I can't test my site with all the browsers... takes too much time !
*FIXED*
I made 2 mistakes on the shoutbox redirection script. However the redirection problem in comment posting part is cause by the advertisement codes inserted by the hosting server. They're using window.onload to call their javascript and I'm using the <body onload> to do my redirction, that's why redirection isn't working, they just use my window.onload WITHOUT telling me...hehe... So I remove the onlaod inside the <body> tag and place under their code and it works.
Cause of problem [ Hide ] <body onload="my_redirect()">
<!-- start of server advertisemt -->
<script type="text/javascript">
window.onload=their_function()
</script>
<!-- end of server advertisemt -->
Solution [ Hide ] <body>
<!-- start of server advertisemt -->
<script type="text/javascript">
window.onload=their_function()
</script>
<!-- end of server advertisemt -->
<script type="text/javascript">
window.onload=my_redirection()
</script>
Last thing I want to say is,
Opera is working fine even there's 2 onload calling, I bet it will work with 3 or more onload inside a script. IE and firefox just can't cope with the extra onload and failed.
Opera rulez !