1.0.0 • Published 8 years ago

robe-jajax v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

robe-jajax

Motivation

Ajax library exported from jquery

installitation

npm install jajax

usage

Javascript :

var jajax = require("jajax");

// call jajax.ajax like $.ajax

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

ES6 :

import jajax from "jajax";

// 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/