I am trying to set up my webpage so that the HTML has normal links and then they change to anchor links on DOM ready.
So far i've had no luck, i'm still relatively new to using regular expressions so I have mos probably tried doing it all wrong.
Heres my jQuery code:
$(".LINKS").each(function() {
$(this).attr(
"src",
$(this).attr("src",replace('/\/\?page\=*?/ig', "/#"))
);
});
Any suggestions?