Jump to content

unwanted semicolon in url changer


turpentyne

Recommended Posts

I have a script that is supposed to change an image source url ('pic2') to match one of several options in a drop down. But it's just adding a folder instead of replacing. I can click on other options in the dropdown, and yet another folder is added.

 

the function:


function change3(picName,choice)

{ 
var url = (document[picName].src);
url = url.replace(/crenate/, choice);
url = url.replace(/margin_finelyserrate/, choice);
url = url.replace(/margin_lobed/, choice);
url = url.replace(/margin_undulate/, choice);
url = url.replace(/doubleserrate/, choice);
url = url.replace(/leaf_shapes/,"leaf_shapes/" + choice);
document[picName].src = url;
}

 

So if the one folder says crenate, it needs to be changed to doubleserrate. not say /crenate/doubleserrate/

 

The dropdown items look like this:

 

<li id="margin1"><a href="javascript:passit4('entire')" onclick="ShowContent('uniquename3'); change3('pic2','crenate');" >crenate or whicher is chosen</a></li>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.