The code in insert_word_ignore.php implies that the right frame should disappear, which would be nice:
window.parent.document.getElementById('frame-l').focus();
window.parent.setTimeout('cClick()', 100);
A few things wrong with this:
overlib_mini.js:189 Uncaught TypeError: Cannot read properties of null (reading 'style')
at hideObject (overlib_mini.js:189:27)
at eval (eval at runHook (overlib_mini.js:309:48), <anonymous>:1:1)
at runHook (overlib_mini.js:309:48)
at cClick (overlib_mini.js:45:32)
The code in
insert_word_ignore.phpimplies that the right frame should disappear, which would be nice:A few things wrong with this:
setTimeout(cClick, 100);(at least, this is a strong recommendation from the js community, even though using a string works :-) ref https://stackoverflow.com/questions/6081560/is-there-ever-a-good-reason-to-pass-a-string-to-settimeout )