Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 584 Bytes

README.md

File metadata and controls

52 lines (31 loc) · 584 Bytes

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/