Skip to content

v0.7-beta.1

Pre-release
Pre-release

Choose a tag to compare

@trillobite trillobite released this 14 May 21:09
· 84 commits to master since this release

For the sake of simplicity, and increasing the flexibility of jsonHTML it was determined that it is important to allow the user to append to any portion of the DOM. The user is now able to append to the body of the HTML directly by simply specifying 'body.' In order to do this properly, if you are to append to any div in the DOM, you have to specify it with the hash symbol '#.' Before you were able to simply type .appendTo('divID'), but now it is required to type .appendTo('#divID'), jQuery users should already be familiar with this, as it is a necessary method in order to use jQuery properly.

Additions in this release:

Implemented an easy way to handle events: on click, blur... etc...

Can append a jsonHTML object to a parent jsonHTML object, by passing the object directly, or by passing the parent objects ID.

Object DOM removal memory leak fix.