DOM manipulation

Global Event Attributes

Create

dom.create('meta', ["httpEquiv=Cache-Control", "content=no-cache,no-store,must-revalidate"], 'head');

Remove

dom.remove('#body?tag=0?class=bg')

Add

dom.class('body?tag', 'add', 'bg')

Get

Get element by id, name or tag

ID
dom.get('body')
Name
dom.get('body?name')
Tag
dom.get('body?tag')

Click

The click function triggers elements.