Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

canvas.

...

ajax

The cbxcanvas.Ajaxajax JavaScript class provides a simple way to make Ajax requests with maximum flexibility. The cbxcanvas.Ajax ajax JS class provides three-parameters - Methods, Params, and URL.

The structure of this class is as follows:

Code Block
languagejs
cbxcanvas.ajax(
{ 
	params : params, 
	success : function(result)
	{
	},

	failure : function(result, request)
	{ 
	}

URL:'/Someurl'

}); 

...