views:

47

answers:

1

I have solved this with PHP by adding the 'time()' to the img src tag.

But how is it done with Javascript, same way?

Here is my code:

 th_div_html+= "<img src='"+path_th_img+"' class='shadow2' style='margin:7px;' onclick='imageShow("+z+");'>";

I'm better with PHP than javascript so I need your help on this one.

How can I add something like the 'time()' function to this img tag with javascript ?

Thanks

+5  A: 
img.src = 'img.jpg?' + Math.random();
Harmen