Quick References
      ADO
      ASP
      CSS2
      HTML
      JavaScript
      Jet SQL
      VBScript
      WML
      WMLScript
      WSH
      XHTML
      XML DOM
      XSLT

Features
      Knowledge Base
      Tutorials

Partners
     ZVON.ORG
     XML
     Planet Source Code
     VisualBuilder
     Web Design
     Your HTML Source
     XML/XSLT Forums
     ASPAlliance
     Scripts
     
     Programmers Heaven
     Tek-Tips Forums
     Developer Fusion
     Code Project









TAG: ins

<ins> ... </ins>
 
The ins tag is used with the del tag to display editorial changes involving additions and deletions to the text of a document. The del tag marks the text to be deleted by striking a horizontal line through the characters. The ins tag designates the text to be added with an underline. This can also be accomplished using style sheets.
 
An ins tag cannot occur between any opening and closing del tags, and vice versa.
 
The separate closing tag is mandatory.
 
Attributes and Events
 
class    dir    id    lang    onclick    ondblclick    onkeydown    onkeypress    onkeyup    onmousedown    onmousemove    onmouseout    onmouseover    onmouseup    style    title
 
cite
The cite attribute is used to list one reference URL related to the editorial changes.
 
datetime
The datetime attribute is used to present the date and time that the editorial changes occurred. It must be of the format YYYY-MM-DDThh:mm:ssTZD where the required T denotes the break between the date, the time, and the time zone.
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>DevGuru XHTML ins Tag Example</title>
</head>
<body>
The gentlemen of the first party agrees to pay <del>$1,047,300</del> <ins>$953,150</ins> to the gentlemen of the second party no later than <del>August 1, 2001</del> <ins>June 1, 2002</ins>.
</body>
</html>

 
Output:
The gentlemen of the first party agrees to pay $1,047,300 $953,150 to the gentlemen of the second party no later than August 1, 2001 June 1, 2002.


 


Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information