ratman07 Posted September 17, 2007 Share Posted September 17, 2007 Hello- I was wondering if someone can help me out with this short script. I am missing something because I get the runtime error from microsoft jscript: spell_img = new find_text_boxes(); spell_img.src = '/images/standard/spellcheck.gif'; spell_img.setAttribute('title',_lang_spellcheck ); function find_text_boxes() { myforms = document.forms; for( i=0;i < myforms.length; i++ ) { textareas = myforms.getElementsById('textarea'); for( y=0; y < textareas.length; y++ ) { spelllink = document.createElement('a'); spelllink.setAttribute('href',"javascript:spellCheck(" + i + ", '" + textareas[y].name + "')"); spelllink.appendChild( spell_img.cloneNode(true) ); textareaParent = textareas[y].parentNode; textareaParent.insertBefore( spelllink, textareas[y].nextSibling ); } } } ty Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.