The previous posted "work-around" didn't work for me:
Quote:
<body class="wysiwyg" onLoad="assignSelf(); window.parent.startsp();" onBlur="window.focus()"; id="theBody">
|
I have however found a work around that works well. A little clunky but it works:
In the vbspell_iframe.php
FIND:
Code:
function assignSelf() {
window.parent.iFrameBody = window.document.getElementById("theBody");
}
REPLACE WITH:
Code:
function assignSelf() {
window.parent.iFrameBody = window.document.getElementById("theBody");
alert("Click OK to view your spelling results.");
}
In the alert box, put what ever text works best for you.