My favorites | Sign in
Project Home Downloads Source
READ-ONLY: This project has been archived. For more information see this post.
Project Information
Members
Featured
Downloads
Links

The project moved to https://github.com/Octane/jsCore/

  • version: 2.8.1
  • date: 2009.06.13

Advantages

  • Fast and lightweight
  • Cross-browser (IE6+, FF2+, Opera 9+, Safari 3+)
  • Support DOMContentLoaded
  • Caching for document.getElementById('id')
  • Support AJAX (external module)
  • Easy to learn

In future we will add

  • Animation (fadeIn, fadeOut, slideToggle)
  • Processing XHTML-forms

How to use

  1. Add js-core to document
  2. <script type="text/javascript" src="js-core.js"></script>
  3. Place your script after
  4. Work with DOM-elements after the event DOMContentLoaded
  5. $.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.

Powered by Google Project Hosting