Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

How can I get Firefox to print a table of URLs associated with the page or selection being printed as is an option in Internet Explorer?

  • 1 odgovor
  • 13 ima ovaj problem
  • 4 prikaza
  • Posljednji odgovor od cor-el

more options

In Internet Explorer, selecting 'File' and then 'Print' brings up a Print dialog box with two tabs. The second tab allows you to select the option to 'Print a table of Links' from the URLs encoded in the page or selection being printed. This is a very useful feature, and would make a nice addition to the outstanding features of Mozilla Firefox.

In Internet Explorer, selecting 'File' and then 'Print' brings up a Print dialog box with two tabs. The second tab allows you to select the option to 'Print a table of Links' from the URLs encoded in the page or selection being printed. This is a very useful feature, and would make a nice addition to the outstanding features of Mozilla Firefox.

Svi odgovori (1)

more options

You can use a bookmarklet like this to see list of links in a Firefox tab (window) and print that list.

javascript:(function(){var links=document.links,info='',i,L;for(i=0;L=links[i];i++){info+=L.href+'<br>';}with(window.open().document){write(info);close();}})();


javascript:(function(){var links=document.links,info='',i,L;for(i=0;L=links[i];i++){info+='<a href="'+L.href+'">'+L.innerHTML+'</a><br>';}with(window.open().document){write(info);close();}})();


javascript:(function(){var links=document.links,info='',i,L;for(i=0;L=links[i];i++){info+=L.innerHTML+' : <a href="'+L.href+'">'+L.href+'</a><br>';}with(window.open().document){write(info);close();}})();

Izmjenjeno od cor-el