Hi!
Two questions.
- Is there any way to edit shout(s)?
- How to set different input field size on vBA than forum home ?
Generaly 50px input field is fine but vBA's columns are very narrow and 50px input field is way to long for vBA...
If u can show me how to detect current page (if it's vba page or forum home) I think I can do it by myself...
edit1
--------
firefox's error console says:
Quote:
Call to element via global ID/NAME. Insted of that
use document.getElementById() method from DOM W3C standard.
Line:380
|
and my friend additionally show me this:
Code:
shoutsDiv.innerHTML = newshouts + shoutsDiv.innerHTML;
function updateChatbox(newshouts) {
if (inputontop == 1) {
shoutsDiv.innerHTML = newshouts + shoutsDiv.innerHTML;
} else {
shoutsDiv.innerHTML = shoutsDiv.innerHTML + newshouts;
document.body.scrollTop = document.body.scrollHeight;
}
updateTimeNow();
}