Jump to content

[SOLVED] Function Issue


ratman07

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.