QQ is toolkit for building highly modular,
maintable applications quickly.

Light

Only 100kb minified and gzipped

Isomorphic

QQ is a cross-platform "write once, run anywhere" program.
It runs on any of the following platforms:
Web, Node.js, Browser Extensions, Mobile, Smart TV & Digital Media Player.

High Performance

Optimizing a user interface is an art.
Responsiveness is key to experience

A Brief Look

Show the #banner-message element that is hidden with display:none on its CSS when any button in #button-container is clicked.
1 var hiddenBox = $("banner-message");
2 $("#button-container button").on("click", function(event) {
3 hiddenBox.show();
4 });