Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > <LINK> tags

Reply
Thread Tools

<LINK> tags

 
 
The Numerator
Guest
Posts: n/a
 
      04-10-2006
I know a lot about HTML, but all this time I don't know what the <LINK>
tags in the head do. There are those that call a stylesheet, favicon,
etc. But what about those that state the contents of the page, identify
the next and previous page, etc. Do some browsers support them or are
they just for organization or something?

 
Reply With Quote
 
 
 
 
Brian
Guest
Posts: n/a
 
      04-10-2006
The Numerator wrote:
> I don't know what the <LINK> tags in the head do.


> what about those that state the contents of the page, identify the
> next and previous page, etc. Do some browsers support them or are
> they just for organization or something?


Firefox has -- or had -- an extension that would give users access to
the urls in <link> elements. The extension does not work with the latest
version, and there have been no updates for some time.

Opera has this built in. There are a few other browsers that also have
support for it. As you might have guessed, IE is not one.

--
Brian
remove ".invalid" to email me
 
Reply With Quote
 
 
 
 
Dan
Guest
Posts: n/a
 
      04-11-2006
Brian wrote:
> Firefox has -- or had -- an extension that would give users access to
> the urls in <link> elements. The extension does not work with the latest
> version, and there have been no updates for some time.


The Mozilla / SeaMonkey suite has native support for LINK elements, one
reason I prefer it over the more-hyped Firefox.

--
Dan

 
Reply With Quote
 
Dan
Guest
Posts: n/a
 
      04-11-2006

The Numerator wrote:
> I know a lot about HTML, but all this time I don't know what the <LINK>
> tags in the head do. There are those that call a stylesheet, favicon,
> etc. But what about those that state the contents of the page, identify
> the next and previous page, etc. Do some browsers support them or are
> they just for organization or something?


Some info about LINK tags and other HTML head / metadata elements is in
my site:

http://webtips.dan.info/titles.html

--
Dan

 
Reply With Quote
 
Jim Moe
Guest
Posts: n/a
 
      04-11-2006
The Numerator wrote:
> I know a lot about HTML, but all this time I don't know what the <LINK>
> tags in the head do. There are those that call a stylesheet, favicon,
> etc. But what about those that state the contents of the page, identify
> the next and previous page, etc. Do some browsers support them or are
> they just for organization or something?
>

See <http://www.w3.org/TR/REC-html40/struct/links.html>, section 12.3.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
 
Reply With Quote
 
axlq
Guest
Posts: n/a
 
      04-11-2006
In article <>,
Brian <> wrote:
>Firefox has -- or had -- an extension that would give users access to
>the urls in <link> elements. The extension does not work with the latest
>version, and there have been no updates for some time.
>
>Opera has this built in. There are a few other browsers that also have
>support for it. As you might have guessed, IE is not one.


Lynx does it too.

-A
 
Reply With Quote
 
Toby Inkster
Guest
Posts: n/a
 
      04-11-2006
Brian wrote:

> Opera has this built in. There are a few other browsers that also have
> support for it. As you might have guessed, IE is not one.


Mozilla (0.9.5-0.9.9 and 1.1+) has support too and iCab. Also, a few older
browsers like Mosaic and UdiWWW. Most command-line browsers include
support for <LINK>, including Lynx.

There is an add-in for IE too:
http://www.draig.de/LinkBar/index.en.html

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

 
Reply With Quote
 
VK
Guest
Posts: n/a
 
      04-11-2006

Brian wrote:
> The Numerator wrote:
> > I don't know what the <LINK> tags in the head do.

>
> > what about those that state the contents of the page, identify the
> > next and previous page, etc. Do some browsers support them or are
> > they just for organization or something?

>
> Firefox has -- or had -- an extension that would give users access to
> the urls in <link> elements. The extension does not work with the latest
> version, and there have been no updates for some time.
>
> Opera has this built in. There are a few other browsers that also have
> support for it. As you might have guessed, IE is not one.


?

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="Bx2/css/default.css">
<script type="text/javascript">
function init() {
var lnk = document.getElementsByTagName('LINK');
for (var i=0; i<lnk.length; i++) {
alert(lnk[i].href);
// Or get the URI content over Ajax if the same domain.
// Or get the style sheet content from any domain
// (the latter not supported yet only by Opera)
}
}

window.onload = init;
</script>
</head>

<body>

</body>
</html>

 
Reply With Quote
 
Timothy Larson
Guest
Posts: n/a
 
      04-11-2006
Brian wrote:
> Firefox has -- or had -- an extension that would give users access to
> the urls in <link> elements. The extension does not work with the latest
> version, and there have been no updates for some time.


This reason alone makes me want to figure out how to do scripting in FF,
so I can write a new LINK bar. I was a big proponent of LINK support in
Mozilla, and it's one thing I still miss in FF.


Tim
 
Reply With Quote
 
Timothy Larson
Guest
Posts: n/a
 
      04-11-2006
<http://www.euronet.nl/~tekelenb/WWW/LINK/>
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
All style tags after the first 30 style tags on an HTML page are not applied in Internet Explorer Rob Nicholson ASP .Net 3 05-28-2005 03:11 PM
Evaluating struts tags inside my own custom tags... A. Brinkmann Java 2 04-16-2004 07:44 AM
JSP newbie - use include, custom tags, standard tags - or what? Mike Java 3 01-09-2004 09:30 AM
RegEx to find CFML tags nested in HTML tags Dean H. Saxe Perl 0 01-03-2004 06:11 PM
Custom Tags within Custom Tags. Ranganath Java 2 10-21-2003 06:14 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57