I have no intention of just altering the link (I hear that's impossible, but if it's not I'd love to know how). I'm fine with adding it to the the browser history if that needs to be done.
I'd like to loop through all <a>
's on a page and change their state to visited. For example:
$("a").each(function(){
//mark as visited (somehow?)
});
Essentially creating a "Mark All as Read" button on my page. Any ideas?