1.0.1 • Published 7 years ago

robe-ajax v1.0.1

Weekly downloads
22
License
MIT
Repository
github
Last release
7 years ago

robe-ajax

Motivation

Ajax library exported from jquery

installitation

npm install robe-ajax

usage

Javascript :

var jajax = require("robe-ajax");

// call jajax.ajax like $.ajax

jajax.ajax(
  url: "script.php",
  method: "POST",
  data: { id : menuId },
  dataType: "html"
);

ES6 :

import jajax from "robe-ajax";

// call jajax.ajax like $.ajax

jajax.ajax(
  url: "script.php",
  method: "POST",
  data: { id : menuId },
  dataType: "html"
);

More information : http://api.jquery.com/jquery.ajax/