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, then add code that uses its API. Here is a simple example:
<html>
<head>
<script href="<uri_to_qx.Website_file>"/>
</head>
<body>
<div>
Hello World!
</div>
<script>
alert(q("div").getHtml());
</script>
</body>
</html>