Getting Started with qooxdoo qx.Website¶
It's easy to start using qx.Website. Create an HTML page and <script>-include the qx.Website library file(s), then add code that uses its API. Here is a simple example:
<html>
<head>
<script src="<uri_to_qx.Website_file>"></script>
</head>
<body>
<div>
Hello World!
</div>
<script>
alert(q("div").getHtml());
</script>
</body>
</html>