Checkout mochaUI I’ve been using it on a new web app I’m building and I’m very impressed with it. The code is very straightforward and the developers of mochaUI have put together some good documentation. It’s based on the MooTools javascript framework.
Creating slick interfaces can be as easy as this:
1 2 3 4 5 6 7 8 9 | document.mochaUI.newWindow({ id: 1, title: 'Add Note', content: 'some text is here', scrollbars: true, modal: false, width: 400, height: 200 }); |