You can use a simple bookmarklet to make links on LW non-functional, e.g.:
javascript:(function(){$$(‘a’).each(function(q){q.writeAttribute(‘href’,‘#’);})})();
To use this you would just set up a bookmark with the code as the address and click on it while LW is open.
Edit: A cross-site version of the bookmarklet would look like this:
javascript:(function(){var x=document.getElementsByTagName(‘a’);for(var i=0,n=x.length;i<n;i++)x[i].setAttribute(‘href’,‘#’);})();
You can use a simple bookmarklet to make links on LW non-functional, e.g.:
To use this you would just set up a bookmark with the code as the address and click on it while LW is open.
Edit: A cross-site version of the bookmarklet would look like this: