Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Latest commit

 

History

History
34 lines (16 loc) · 692 Bytes

documentMetaNotUsedWithTimeout.rst

File metadata and controls

34 lines (16 loc) · 692 Bytes

Meta" elements must not be used to refresh the content of a page

Severity code: Severe error

.. php:class:: documentMetaNotUsedWithTimeout


Because different users have different speeds and abilities when it comes to parsing the content of a page, a "meta-refresh" method to reload the content of the page can prevent users from having full access to the content. Try to use a "refresh this" link instead..

Example

Wrong

<head><meta http-equiv="refresh" content="60"></head>

Right

<head></head><body><a href="here.html">Refresh</a></body>