|
Project Information
Members
Featured
Downloads
Links
|
Project moved to GitHub
How to use
<script type="text/javascript" src="js-core.js"></script> $.ready(function() {
// for example: append heading level 1
// with green text 'Hello World!'
$(document.body)
.append("h1")
.text("Hello World!")
.css("color", "green");
});For more information, see examples and documentation. Improve your JavaScript skills, read ECMA-262 by Dmitry A. Soshnikov. |