0.0.1 • Published 10 years ago

dombuild v0.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
10 years ago

dombuild

var d = require('dombuild');

var ui = d('!foo#root.a.b.c',
  "This is a text node", [d, "br"],
  "This is another text node", [d, "br"],
  [d, "br"],
  [d, "a!link.active",
    { href: "/foo/bar",
      onclick: function(evt) { evt.preventDefault(); alert("hello!"); } },
    "Click me! ",
    [d, "b", "here's some bold text"],
    " ",
    [d, "i", "here's some italic text"]
  ],
  [d, "div", {style: {width: 100, height: 100, backgroundColor: 'red'}}]
);