Hello!

This community site I visit frequently let's you post what you just wrote by pressing ctrl+enter, howver it only supports IE and I use Netscape. Would there be anyway to rewrite their code so it would support Netscape too?

they use this code:

function checkSubmit(el) {

if (event.ctrlKey && 13 == event.keyCode) {
SendGuestbook();
return false;
}
return true;
}

Thanks!