What are Web Slices?

What are Web Slices?

IE8 new feature Web Slices (Web Slices)
Microsoft released the official version of IE8 on March 20. The new feature Web Slices is something that I am very interested in.
What are Web Slices?
Slice refers to a part, and Web Slices refers to a part of the content on a web page. For example, you are interested in the latest article on ITFeed or the latest price of a product on Taobao, but you don’t want to open the page all the time to check. What should you do? Web Slices provides you with such convenience. You can get updates of the parts of the web page you are interested in on the favorites bar. Right-click and select Properties to set the update plan. When there is an update, it will notify you in bold, or you can refresh it manually to view it.
How to create Web Slices?
Web Slices uses the Microformats approach. All you need to do is set three specific class tags for a certain section of (x)html code. Also, don’t forget to add an ID to this content, otherwise it will be invalid.
The three class tags are hslice, entry-title, and entry-content.
hslice sets the content block
entry-title sets the displayed title
entry-content sets the content to be displayed
<div id="news" class="hslice">
<h4 class="entry-title">ITFeed Latest Updates</h4>
<ul class="entry-content">
<li><a href="#">Another quick loan from a foreigner</a></li>
<li><a href="#">The SNS community road of vertical portals</a></li>
<li><a href="#">Learn to use the data() function in jQuery</a></li>
<li><a href="#">Voices from Taobao front-end developers</a></li>
<li><a href="#">Use jQuery to create a floating navigation. </a></li>
</ul>
</div>
add web slices
web slices

<<:  Use the docker build kit to build a Docker image that can be used on the Raspberry Pi

>>:  Vue template configuration and webstorm code format specification settings

Recommend

JS implements a simple counter

Use HTML CSS and JavaScript to implement a simple...

A possible bug when MySQL executes the sum function on the window function

When using MySql's window function to collect...

How to enable the root account in Ubuntu 20.04

After Ubuntu 20.04 is installed, there is no root...

How to implement DIV's blur function

Use anti-shake to make DIV disappear when the mou...

Solutions to invalid is Null segment judgment and IFNULL() failure in MySql

MySql Null field judgment and IFNULL failure proc...

How to use vw+rem for mobile layout

Are you still using rem flexible layout? Does it ...

Some wonderful uses of URL objects in JavaScript

Table of contents Preface Parsing parameters Modi...

Conflict resolution when marquee and flash coexist in a page

The main symptom of the conflict is that the FLASH...

JavaScript canvas to achieve mirror image effect

This article shares the specific code for JavaScr...

JS function call, apply and bind super detailed method

Table of contents JS function call, apply and bin...

Detailed explanation of the construction and use of docker private warehouse

1. Download the repository image docker pull regi...

Complete steps to implement location punch-in using MySQL spatial functions

Preface The project requirement is to determine w...

mysql data insert, update and delete details

Table of contents 1. Insert 2. Update 3. Delete 1...

Detailed explanation of Deepin using docker to install mysql database

Query the MySQL source first docker search mysql ...