Jay Taylor's notes

back to listing index

LeadDyno/intercooler-js

[web search]
Original source (github.com)
Tags: javascript html ajax github.com
Clipped on: 2016-11-06

Skip to content
Making AJAX as easy as anchor tags http://intercoolerjs.org
HTML JavaScript Other
Latest commit 1aa82b9 9 days ago Image (Asset 2/4) alt= carsongross committed on GitHub Merge pull request #133 from mjmurphy/master

README.md

Image (Asset 3/4) alt=

Introduction

Intercooler is a small (6.74KB gzipped) jQuery-based library that allows you to add AJAX to your application using HTML attributes.

Here is an example:

    <!-- When this button is clicked an AJAX POST request is sent to /example and the 
         response content is swapped in to the body of the button -->
    <button ic-post-to="/example">
        Click Me!
    </button>

Despite this simplicity, intercooler supports quite a bit of functionality:

These features allow you to build modern web applications with little fuss, using a simple and intuitive REST-ful architecture that ensures good performance, excellent user experience and a minimum of complexity.

It also is very easy to incrementally retrofit intercooler into existing web applications to add AJAX functionality where it is most valuable.

Full documentation is available on the main intercooler website

Installing

Intercooler can be downloaded or hot-linked from the downloads page.

Or installed via bower:

normal "dependencies": {
    "intercooler-js" : "1.0.2"
  }
normal

Intercooler depends on jQuery v1.10.0 or higher.

License

Intercooler is licenced under the MIT License

Official Theme Music

Rober Parker

Contributing

To contribute a change to intercooler:

  • Fork the main intercooler repository
  • Create a new feature branch based on the  development  branch with a reasonably descriptive name (e.g.  fix_http_get_parameter_overriding )
  • Implement your fix
  • Add a test to  /test/unit_tests.html . (It's pretty easy!)
  • Create a pull request for that branch against  development  in the main repository

Thank you to all the contributors!

Image (Asset 4/4) alt=