
I think it's working now, Thank you it's a great hack!
Oh I did have to do some very very minor edits to thevbulletin_editor.js edit. For some reason it doesn't work in firefox ifthe { and } are not on seperate lines.
Code:
function do_quote_hack(quotestring,is_ie)
{
if (document.getElementById('htmlbox'))
{
if (is_moz)
{
moz_insert_smilie('<br>'+quotestring+'<br>');
}
else
{
document.getElementById('htmlbox').innerHTML += quotestring;
}
}
else
{
document.vbform.message.value += quotestring;
}
}