W3 3.2n
4.0y
NS 3.0n
4.0n
IE 3.0n
4.0y
TV 1.2n
2.1n

<DEL>...</DEL>

Description

This is a element that is used to indicate text that has been deleted. This can be used to show if text has been replaced what the original text was.

DTD

<!ELEMENT (DEL) - - (%flow;)*          -- deleted text -->
<!ATTLIST (DEL)
  %attrs;                              -- %coreattrs, %i18n, %events --
  cite        %URI;          #IMPLIED  -- info on reason for change --
  datetime    %Datetime;     #IMPLIED  -- date and time of change --  >
from the HTML 4.0 DTD, "Copyright © W3C, (MIT, INRIA, Keio). All Rights Reserved."

Attributes

Core attributes: class id style title
Internationalization attributes: dir lang
Events: onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup

W3 3.2n
4.0y
NS 3.0n
4.0n
IE 3.0n
4.0n
TV 1.2n
2.1n
CITE
The value of this attribute is a URI that points to a resource where there's an explanation why the text was deleted.
W3 3.2n
4.0y
NS 3.0n
4.0n
IE 3.0n
4.0n
TV 1.2n
2.1n
DATETIME
This attribute specifies the date and time when the text was deleted.

The format for this timestamp is:

  YYYY-MM-DDThh:mm:ssTZD
where:
     YYYY = four-digit year
     MM   = two-digit month (01=January, etc.)
     DD   = two-digit day of month (01 through 31)
     hh   = two digits of hour (00 through 23) (am/pm NOT allowed)
     mm   = two digits of minute (00 through 59)
     ss   = two digits of second (00 through 59)
     TZD  = time zone designator
The time zone designator is one of:
Z
indicates UTC (Coordinated Universal Time). The "Z" must be upper case.
+hh:mm
indicates that the time is a local time which is hh hours and mm minutes ahead of UTC.
-hh:mm
indicates that the time is a local time which is hh hours and mm minutes behind UTC.
If a the time is not known to the second, you can use the value "00" for the seconds (and minutes and hours if necessary).

Examples

Source
All rights reserved. No part of this publication may be
<DEL>copied or reproduced</DEL>
<INS>copied, reproduced or transmitted</INS>
in any form without the written permission of the publisher.
 
Result
All rights reserved. No part of this publication may be copied or reproduced copied, reproduced or transmitted in any form without the written permission of the publisher.
Statistics