Skip to content

Instantly share code, notes, and snippets.

@wittemann
Created November 26, 2012 14:12
Show Gist options
  • Save wittemann/4148412 to your computer and use it in GitHub Desktop.
Save wittemann/4148412 to your computer and use it in GitHub Desktop.
qx.Website Hello-World
q.ready(function() {
var div = q.create("<div>")
.setHtml("Hello...")
.appendTo(document.body);
div.on("click", function(e) {
div.fadeOut().once("animationEnd", function() {
div.setHtml("... World!");
div.fadeIn();
});
});
});
name: Hello-World for qx.Website
description: First and simple application build using qx.Website
authors:
- Martin Wittemann
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment