├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── demo ├── img │ ├── delete.png │ ├── get.png │ ├── post.png │ └── put.png ├── index.css ├── index.html └── index.js ├── dist ├── simpleAjax.js └── simpleAjax.min.js ├── package.json └── src └── simpleAjax.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: bolajiayodeji 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/_config.yml -------------------------------------------------------------------------------- /demo/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/demo/img/delete.png -------------------------------------------------------------------------------- /demo/img/get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/demo/img/get.png -------------------------------------------------------------------------------- /demo/img/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/demo/img/post.png -------------------------------------------------------------------------------- /demo/img/put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/demo/img/put.png -------------------------------------------------------------------------------- /demo/index.css: -------------------------------------------------------------------------------- 1 | .container { 2 | margin-top: 100px !important; 3 | } 4 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/demo/index.js -------------------------------------------------------------------------------- /dist/simpleAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/dist/simpleAjax.js -------------------------------------------------------------------------------- /dist/simpleAjax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/dist/simpleAjax.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/package.json -------------------------------------------------------------------------------- /src/simpleAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/simple-ajax-library/HEAD/src/simpleAjax.js --------------------------------------------------------------------------------