Forum Moderators: open
Thank you for your help.
Well here's a quick and dirty solution:
Copy the contents of this code to your clipboard
Go into Bookmark manager and create a new bookmark
Give it any name you like
Paste my code into the "Location" box.
and close.Now if you click that book mark, it will open a new window and paste in the links and their text strings as a table. You can then copy and paste the table.
Code:
javascript:x=document.getElementsByTagName(%22A%22);y=window.open();y.document.write(%22<HTML><HEAD></HEAD><BODY><table>%22);for(n=0;n<x.length;n++){y.document.write(%22<tr><td>%22+x[n].text+%22</td><td>%22+x[n].href+%22</td></tr>%22);}y.document.write(%22</table></BODY></HTML>%22);y.document.close();void 0;Sorry it's so wide but it's imperitive that you have no spaces in this line of code.
It only checks for Anchors tags (not other types of links)
Hope this helps.