As already known, JavaScript library FullAjax the ability to easily implement Ajax technology for your site without additional knowledge JavaScrip. You need only basic knowledge of HTML and in some cases change the logic in the server-side of the site. So here are some basic points will describe the implementation of this library.
Download latest version of the library (can here) and connect it to the site.
1
2
3
4
| <script type="text/javascript" src="/fullajax.js"></script>
<script type="text/javascript">
//here configuration for fullajax
</script> |
Next you must (more…)
Filed under:
FullAjax, How to
|
Comments (6)
HAX – one of a function of FullAjax, used for request and automatic processing a HTML (HtmlAjaX) — this is AHAH support (Asynchronous HTML and HTTP).
Example using HAX:
In the element id = ‘my-div’ is loaded page ‘index.html’ with using AJAX history.
1
| hax({url:'index.html', id:'my-div'}) |
In the element id = ‘my-div’ is loaded page ‘index.html’ without using AJAX history. After it will appears message ‘Hey!’.
1
2
3
| hax({url:'index.html', id:'my-div', nohistory:1, onload:function(){
alert('Hey!')
}}) |
List of HAX options: (more…)
Filed under:
FullAjax, How to
|
Comment (0)