I need to change the src for an html image tag from relative to absolute url.
src
I am using the following code. urlRelative and urlAbsolute are created correct
change image captcha refresh
html:
jquery:
$("#captcha_img").click(function() { var capt_rand=Math.floor((Math.random() * 9999) + 1); $("#captcha_img").attr("src","http://localhost/captcha.php?" + capt_rand); });