Can someone show me how to do the following in JavaScript? I know how to grab the src of the image, I just want to be able to replace the filename with something new.
/image/any/path/ANY-TEXT_HERE.png
/image/any/path/NEWTEXT.png
|
Can someone show me how to do the following in JavaScript? I know how to grab the src of the image, I just want to be able to replace the filename with something new.
|
|||
|
|
|
Case-insensitive version:
Remove the i after / to make it case-sensitive. |
|||||||||||||
|
|
All the other solutions so far assume there actually IS a path. They work only if there is at least one forward slash. This tested functions works in all cases including an empty path:
|
|||||
|
|
|
Another option:
|
|||
|
|
|
javascript its really restrictive to files. I assume that you want to do that on a server. if that so, you should use a serverside script, not a client side. Maybe you ar talking about an ajax script if you can explain a ltl further maybe i can lendyou a hand |
|||
|
|
|
|||||||||
|