Now a days Javascript frameworks like Jquery, Mootools are essential to every webdevelopment environment. The frameworks make javascript programming easier. It not only reduces the lines of custom code but also reduces the pressure on a programmer. Form validation and submission is a real headache for a user management and session management system.
To make work easier here is a plugin for Jquery called ALAJAX. It converts a standard form into Ajaxed form without much complex coding. Once inserted and the forms are defined, It blocks the default POST
functionality, analyzes the input types used and sends them as an Ajax request. The code written and documented very well. And leaves some room for further customizations.
Features of ALAJAX
- Converts forms into AJAX simply.
- No programming background needed.
- Works with Dynamic Forms (forms that is updated by Javascript)
- Lightweight code (3KB uncompressed).
- Easy to understand and to modify.
- Cool for Developers, designers and website ownsers.
How to Use ALAJAX
- Include the jQuery script to your webpage.
- Include ALAJAX script. (<script src=”alajax.js”></script>)
- Run the code by:
$(document).ready(function (){ $("#ID").alajax(); });
- #ID could be The Form ID or DIV ID
Download ALAJAX
http://www.alajax.com/js/alajax-1.0.js
Tested on: IE6+, Firefox, Chrome, Safari, Opera, and Mobile browsers
ALAJAX Demo : http://www.freelancer-id.com/alajax-demo
Related articles
- JAVAScript And JQuery Add Strength In Website Development (webdesigndevelopment11.wordpress.com)
- Your own jQuery Deferreds (javascriptplayground.com)
- 15 jQuery Space-Saving Content Sliders and Carousels (onextrapixel.com)
- Create a Voting Plugin for WordPress (sitepoint.com)
- Best of JavaScript, HTML5 & CSS3 – Week of May 14, 2012 (remotesynthesis.com)
- Easy way of manipulating the DOM in Javascript (stackoverflow.com)
- 50+ JavaScript & HTML5 Frameworks and Related Tools (remotesynthesis.com)