in reply to A new chatterbox flavour

Nicely done. Two beefs: 1) sending on enter would make it easier to use and 2) the chat box is too big and makes me scroll to see the bottom. I'm running Firefox 0.9.1 on Linux if that helps tracking down #2.

-sam

Replies are listed 'Best First'.
Re^2: A new chatterbox flavour
by Aristotle (Chancellor) on Dec 19, 2004 at 21:32 UTC

    I had a hard time making the chat buffer fill the window and have scrollbars on it when the content grows, so I just made it a fixed size. Change the 480px in the CSS if you need something smaller for now.

    Thanks for the compliments and feedback. :-)

    Makeshifts last the longest.

      Yeah, that's a pain. I did it for the Krang website for an iframe. Here's how:

      function reSize() { var iframe = document.getElementById("ifrm"); if (window.innerHeight) { // Netscape compatible iframe.height = window.innerHeight - 150; } else if( document.documentElement && document.documentElement.clientHeight ) { //IE 6+ in 'standards compliant mode' iframe.height = document.documentElement.clientHeight - 150; } else if( document.body && ocument.body.clientHeight ) { //IE 4 compatible iframe.height = document.body.clientHeight - 150; } }

      I called that function like this:

      <body onload="reSize()" onresize="reSize()">

      I don't remember where I got this voodoo from but I sure as heck didn't come up with it myself!

      -sam