var regV = /([^\s]+(?=\.(jpg|gif|png))\.\2)/; $("a").each(function(){ var a = $(this).attr("href"); if(a.search(regV)) { $(this).attr("href","#"); } });