Hi,

I need some snipplet of javascript code to do the following

find ALL html tags by a class name I want to pass as a parameter along with another parameter I need to pass, then change/extend the filename for the image inside that tag

e.g.
function myFunction (className, fileExpansion)

make of
<div class="myclass"><img src="somedir/image.jpg"></div>

to

<div class="myclass"><img src="somedir/image_epandet.jpg"></div>

can somebody help me?

Thanks

DEV