473,385 Members | 1,582 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

<LINK> tags

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?

Apr 10 '06 #1
17 1932
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
Apr 10 '06 #2
Dan
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

Apr 11 '06 #3
Dan

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

Apr 11 '06 #4
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)
Apr 11 '06 #5
In article <12*************@corp.supernews.com>,
Brian <us*****@julietremblay.com.invalid> 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
Apr 11 '06 #6
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

Apr 11 '06 #7
VK

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>

Apr 11 '06 #8
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
Apr 11 '06 #9
<http://www.euronet.nl/~tekelenb/WWW/LINK/>
Apr 11 '06 #10
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. :-(


It doesn't work, or the extension won't install?

Here's why I ask, and here's a general tip for other FF extension fans:

I wanted an extension for 1.5 that only was rated up to FF 0.8. I
didn't notice, that, and of course the install went south.

I was looking at the home page for that extension and happened to notice a
post in is forum that said it would work fine if you tweaned what I'll
call the "permissable version" line in the targetInstallation
of the install.rdf that is contained by the .xpi file that comprises the
distribution file for the extension.

I changed that line to read:

<em:maxVersion>1.6</em:maxVersion>

from 0.8, and it worked fine here in FF/Linux.

I shared this with a friend who uses WinXP, and for good measure he
changed the value to 2.0 and his installation works fine, too.

I just looked at some other install.rdf files in extension packages, and
they all had that line.

So: if it won't install, that's something to try.
--
Blinky RLU 297263
Killing all posts from Google Groups
The Usenet Improvement Project: http://blinkynet.net/comp/uip5.html
Coming Soon: Filtering rules specific to various real news clients

Apr 11 '06 #11
Timothy Larson wrote:
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.


More than one site navigation toolbar extension,

https://addons.mozilla.org/addon.php?id=1324
cmSiteNavigation Toolbar

This one works the latest FF.

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Apr 11 '06 #12
Brian <us*****@julietremblay.com.invalid> wrote in
news:12*************@corp.supernews.com:

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.
:-(

<https://addons.mozilla.org/extension...fo.php?id=1949
&application=firefox> shows a January 2006 update that works with 1.5.
--
Thomas Dowling
td******@ohiolink.edu
Apr 11 '06 #13
Brian wrote:
The Numerator wrote:
<LINK> tags in the head


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. :-(


FYI, the seamonkey/mozilla suite supports it natively. The Firefox
extension is crappy in comparison.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Apr 11 '06 #14
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.


As long as extensions are OK: ;-)
<http://www.draig.de/LinkBar/index.en.html>

--
Steve

It is a funny thing about life: if you refuse to accept anything
but the best you very often get it. -William Somerset Maugham
Apr 11 '06 #15
Jonathan N. Little wrote:
More than one site navigation toolbar extension,

https://addons.mozilla.org/addon.php?id=1324
cmSiteNavigation Toolbar

This one works the latest FF.


Wow, this one is great! Thanks a bunch!
Apr 12 '06 #16
Toby Inkster wrote :
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


Seamonkey 1.0, 1.1 and 1.5a supports it.

Firefox 1.0.x supports but you have to download the extension.

Firefox 1.5.x also supports it. Look for attachment 3774 at
http://bugzilla.mozdev.org/show_bug.cgi?id=13069

Other references:

W3C Quality Assurance tip for webmasters:
Use <link>s in your document
http://www.w3.org/QA/Tips/use-links

Link bars
http://webcoder.info/reference/LinkBars.html

Gérard
--
remove blah to email me
Apr 12 '06 #17
Dan wrote :
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.

Site Navigation toolbar (or link toolbar) for Firefox 1.5.x can be
downloaded and installed from this bugfile:
http://bugzilla.mozdev.org/show_bug.cgi?id=13069

linktoolbar-1.1.99.1.xpi
38,814 bytes

look for attachment 3774 in that bugfile

Gérard
--
remove blah to email me
Apr 12 '06 #18

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Francesco Moi | last post by:
Hello. I'm trying to build a RSS feed for my website. It starts: ----------------//--------------------- <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE rss PUBLIC "-//Netscape...
6
by: Todd Peterson | last post by:
I'm encountering some wierd behavior with a <link> tag over an HTTPS connection, vs. an HTTP connection... In an ASP/HTML page on my website, I've add a <link rel="shortcut icon"...> in order to...
2
by: Hernán Castelo | last post by:
hi i'm trying to do : <link rel="stylesheet" type="text/css" href="myurl..../inc/css/style.css"/> from the url field of the browser i can normally open the "style.css" with notepad but thru...
2
by: brw | last post by:
Is there a way to dynamically add a link tag to the head block of an ..aspx page? I'm aware that you can add a link tag (or literal control) statically and then dynamically modify the attributes....
5
by: Jake Barnes | last post by:
Very odd. Check out this RSS feed that my PHP script just built: http://www.tagcastle.com/rss/photography.xml When I had a straight URL in the <link> tag, or the <comment> tag, then "="...
1
by: Baldoni | last post by:
It's been years since putting together a page. This line in my HTML: <link type="text/css" rel="stylesheet" href="net4801style.css"> gives this problem (via weblint HTML checker): attribute...
4
by: John A Grandy | last post by:
When constructing an RSS 2.0 XML doc , should the <channel><link> element's value be 1. the url of the page the displays the content that the RSS feed describes : fox example:...
1
by: Doug.Sheahan | last post by:
I am attempting to parse and xml file using javascript but am running into a problem when parsing a <link></link> pair. For example, the link information in most RSS feeds is given as <link> ...
9
by: Arancaytar | last post by:
I have so far seen two methods for including external resources as CSS stylesheets in a document. The first is this: <link href="/stylesheets/style.css" rel="stylesheet" type="text/css" /> And...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.