W3-Video WEB Tutorials

w3-video.com is a Free eLearning Website with over 500 video tutorials on HTML5, XAMPP, .htaccess, Firefox, Notepad++

HTML5 Tutorial

Home HTML5 XAMPP .htaccess Firefox Notepad++


ins ... ⁄ins


Share it

ins intro ins browser display ins parents - children ins transparent content model ins syntax ins, del, cite attribute ins, del, datetime attribute

HTML5 ins element

The ins element allows you to mark up inserted content. »video

About ins

Display & support ins

Firefox iconChrome iconIE iconOpera iconSafari icon

Parents, children ins

Attributes ins

Warning

Do not mark inserted content over more than 1 paragraph; ins element should not cross the paragraph boundaries.

Syntax ins

1<ins> ... </ins> »video

Attributes and Values ins (comma separated)

<insattribute="attribute_value(s)"> Video Examples
1. specific attributes
1.cite=URL»video<del cite="filex.php"> ... <⁄del>
2.datetime=YYYY-MM-DD

YYYY-MM-DD hh:mmZ
YYYY-MM-DD hh:mm+hh
YYYY-MM-DD hh:mm+hh:mm
YYYY-MM-DD hh:mm-hh
YYYY-MM-DD hh:mm-hh:mm

YYYY-MM-DD hh:mm:ssZ
YYYY-MM-DD hh:mm:ss+hh
YYYY-MM-DD hh:mm:ss+hh:mm
YYYY-MM-DD hh:mm:ss-hh
YYYY-MM-DD hh:mm:ss-hh:mm

YYYY-MM-DDThh:mmZ
YYYY-MM-DDThh:mm+hh
YYYY-MM-DDThh:mm+hh:mm
YYYY-MM-DDThh:mm-hh
YYYY-MM-DDThh:mm-hh:mm

YYYY-MM-DD hh:mm:ssZ
YYYY-MM-DD hh:mm:ss+hh
YYYY-MM-DD hh:mm:ss+hh:mm
YYYY-MM-DD hh:mm:ss-hh
YYYY-MM-DD hh:mm:ss-hh:mm

YYYY-MM-DDThh:mm:ssZ
YYYY-MM-DDThh:mm:ss+hh
YYYY-MM-DDThh:mm:ss+hh:mm
YYYY-MM-DDThh:mm:ss-hh
YYYY-MM-DDThh:mm:ss-hh:mm
»video<del datetime="2013-03-28T04:23:14Z"> ... <⁄del>
All Specific Attributes
2. global attributes
1.accesskey=keyboard key»img<ins accesskey="h"> ... </ins>
2.class=class name»html »img<ins class="class_name"> ... </ins>
3.contenteditable="",  , true, false »html<ins contenteditable="true"> ... </ins>
4.contextmenu=menu id value»html<ins contextmenu="menu_id_value"> ... </ins>
5.data-*= value -<ins data-http-error="404"> ... </ins>
6.dir=ltr, rtl, auto»html<ins dir="ltr"> ... </ins>
7.draggable= true,  , false»img<ins draggable="false"> ... </ins>
8.dropzone= copy, move, link, string:, file: -<ins dropzone="copy"> ... </ins>
9.hidden= "",  , hidden»html »img<ins hidden="hidden"> ... </ins>
10.id=id name»html »img<ins id="unique_id_name"> ... </ins>
11.itemid= URL --
12.itemprop= string »link »a-
13.itemref= string --
14.itemscope= "",  , itemscope--
15.itemtype= absolute URL --
16.lang=language code »html »head»title »img<ins lang="en"> ... </ins>
17.spellcheck="",  , true, false»html<ins spellcheck="true"> ... </ins>
18.style=CSS property:value»html »img<ins style="color:red"> ... </ins>
19.tabindex= integer »img<ins tabindex="3"> ... </ins>
20.title=text»html »link»style »abbr»dfn
»img »meter
<ins title="html page"> ... </ins>
21.translate="", yes, no»html »img<ins translate="yes"> ... </ins>
All Global Attributes
3. global event attributes
1.onclick=script» list<element onclick="script" > ...
2.ondblclick=script» list<element ondblclick="script" > ...
All Event Attributes

Video demonstration ins element

HTML5 ins element: mark up inserted content

min video details
00:00 video tutorial: ins element, del element
00:04 del element allows you to mark removal content
00:09 ins element allows you to mark inserted content
00:13 let's say this paragraph has been published online (on www), and we need to apply a correction to it: instead of 'twice' to have 'once'
00:21 we need to mark 'twice' as removal content, using del element
00:27 and insert the new content, 'once', and mark it as inserted content using ins element
00:37 the paragraph is now correct and displays like this in browser

For more information about the ins element, please see the specs: W3CWHATWG