Get started with qooxdoo CDN
(LGPL-2.1 OR EPL-1.0) licensed
Qooxdoo is an open-source JS framework for building rich web applications.
Tags:- framework
- toolkit
- dom
Stable version
Copied!
How to start using qooxdoo CDN
// Include the Qooxdoo library
const script = document.createElement('script');
script.src = 'https://cdn.cdnhub.io/qooxdoo/5.0/q.min.js';
document.head.appendChild(script);
// Create a new application and initialize it
window.onload = () => {
const app = new qx.Application();
// Create a new widget, in this case a button
const myButton = new qx.ui.button.Button('Click me!');
// Add the button to a new container
const container = new qx.ui.container.Composite(new qx.ui.layout.VBox());
container.add(myButton);
// Add the container to the application view
app.getRoot().add(container);
// Start the application
app.start();
};
Copied!
Copied!
Copied!