1.1.2 • Published 8 years ago

caperajax v1.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

Caper.js

MIT License npm version Gitter

Easier using ajax function in JAVASCRIPT

Install

$ npm install caperajaxjs

Download it

github.com/WMXPY/Caper.js.git

Source it

<script src="caperAjax.js"></script>

And Use it

Ca$.post({
        url: './demo.php',
        data: {
            demo: 'test',
            two: 'testtwo'
        },
        success: function (reply) {
            document.getElementById('test').innerHTML = reply;
        }
    });
Ca$.get({
        url: './demo.php',
        data: {
            demo: 'test',
            two: 'testtwo'
        },
        success: function (reply) {
            document.getElementById('test').innerHTML = reply;
        }
    })

Enjoy it

1.1.2

8 years ago

1.1.1

8 years ago

1.0.15

8 years ago

1.0.14

8 years ago