offline version v3


⊗jsPmMnIE 457 of 502 menu

Insertion of elements before or after in JavaScript

append prepend

Given an ul:

<ul id="elem"> <li>text</li> <li>text</li> <li>text</li> <li>text</li> <li>text</li> </ul>

Insert an element with the text 'start' at the beginning, and an element with the text 'finish' at the end of it.

enru