I'm trying to create a simple HTML tag engine in JavaScript. The idea is to use the tag name as the function name, yet the function does not have to be implemented in order to do that. Lets assume it lives within an object called HTML.
It should look something like this:
HTML.h1({class:"uberheadline"}, "Hello World");
HTML.div({id:"megabox"});
A very basic implementation I have so far is this:
function create_and_append_html_element(params) {
var attributes = params.attr;
var tag = params.tag;
var target = params.target;
var content = params.content;
var element = document.createElement(tag);
if (attributes) $(element).attr(attributes);
if (content) $(element).html(content);
if (target) $(target).append(element);
return element;
}
In essence I'd like to run a function like this, only without having to specify the tag variable. Is it possible? If so, where's a good place to start looking for answers?