Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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/

About

Ajax library exported from jquery

Resources

License

Releases

No releases published

Packages

No packages published