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 Link to comment https://forums.phpfreaks.com/topic/69686-solved-function-issue/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.