Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Soul http://www.harpra.com

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Creating nodes with Javascript DOM

    var newa=document.createElement('a');
    newa.className="class";
    var newimg=document.createElement('img');
    newimg.src="./image.png";
    newimg.alt="Image name";
    newimg.className="Image class";
    newa.appendChild(newimg);
    newa.href="#";
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed