Hi,
Wanted to know which is the most lightest HTML element. Have a huge set of JSON data which i have to display in proper readable format, hence going to loop through the data and create dynamic elements. Which is the most lightest element of HTML, lightest as in which takes the least amount of memory and is easily rendered by the browser etc..
EDIT : Will be using Mootools so no worry for the creation part. Will be using the usual. This is wat i am going todo
objJson.each(function(j, jCounter)
{
var elm = new Element('', {'html' : j.value}).injectInside($(document.body));
});
Tell me what new element is the best to create ??