Articles in the ‘How to’ category

DAX – one of a function of FullAjax, used for request a text data, xml, json, and similar (DataAjaX).

Example using DAX:

1
2
3
dax({url:'myurl', id:'save-data', form:'myform', method:'post', cb:function(resp, cbo){
	alert(resp.text || resp.xml)
}})

Data from all field (input, textarea, select, …) of the form with id=’myform’ will be automatically collected and sent to url=myurl use post method.

id – it a internal thread id designed to separate streams of several trips to the server. At the same time, there can be multiple requests with the same id, the following query overrides the previous. Also use id allows to reuse already created in memory objects.

List of DAX options: (more…)

What is FullAjax?

February 8th, 2011

JavaScript library Fullajax = AJAX (Asynchronous JavaScript and XML) + AHAH (Asynchronous HTML and HTTP)- technology conversion websites and web applications in AJAX.

Allows to use AJAX technology to its fullest, and to quickly and easily implement AJAX for any site without knowledge of the intricacies of AJAX and programming in Javascript. It’s enough to know the basics of HTML.

One of the main features Fullajax – programming as usual and after connecting the library Fullajax get AJAX. This is achieved through special filtering mechanisms that transform normal URL to AJAX.

Basic features: (more…)