Skip to content
Skip to search - Accesskey = s
parentNode.org
The building blocks of a solid frontend.
Pasted
by
fidde
on
2006-06-29 23:24
as
JavaScript
Create New
http://pastebin.parentnode.org/
Links this one
http://pastebin.parentnode.org/553
Comment
function addItem( item, theURL ) { var menu = document.getElementById( "menu" ); var newDT = document.createElement( "dt" ); var newA = document.createElement( "a" ); menu.appendChild( newDT ); newDT.appendChild( newA ); newA.href = theURL; newA.innerText = item; alert("Created!"); }