$(function() { $("a.captcha").each( function() { var f = $(this).attr('target'); this.href = "javascript:void(0);"; this.target = ""; $(this).click( function (e){ $("img#"+f).hide().attr('src', '/kaptcha.jpg?' + Math.floor(Math.random()*100) ).fadeIn(); return false; } ); } ); } );