Jump to content

[How-to]Internet Explorer beta2


NIM

Recommended Posts

RSS autodiscovery

The "Web Feeds" button in IE 7 for Windows XP and in Windows Vista is designed to "light up" when the web page the user is viewing has an associated web feed.

Overview:

In order to tell IE (and other browsers, for that matter), that your page has an associated web feed, you need to add a link element inside the header of your web page.

<html>

<head>

<link rel="alternate" type="application/rss+xml" title="your feed title here" href="http://www.company.com/feedurl.rss">;

</head>

<body>

...

Put the title of your feed in the title attribute and the URL to the feed itself in the href attribute. And, you're done.

Now, when a user goes to your web page, the "Web Feeds" button will light up (and if the user chooses, a sound can play). When the user clicks on the button, it will display the title that you put in the link element, and clicking on the title will navigate the user to preview the feed itself (which IE will render in a readable form in the browser - from there the user will be able to subscribe to your feed).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...