jQac
2012
May 05
May 05
![]() |
DOWNLOAD jQuery Auto Complete v0.1 LICENSE |
DEMONSTRATION
NEWS
- 2010/02/16 jQAC v0.1 released.
DESCRIPTION
- Simple auto comlete plugin.
- Data will be filtered according to the text your fill in.
- Multiple data can be selected by using comma as a separator.
- Easy to integate to your application.
- Easy to define your own logic.
- jQAC tested with IE6, IE7, IE8, FF3, Opera, Safari4, Google Chrome2.
- Lightweight auto complete plugin – The source file is just 5k!
- Free and Free of charge under the MIT License.
DOCUMENTATION
Simple way to initialize the jQAC
- <script type=”text/javascript”>
- $(document).ready(function() {
- //initialize auto complete object
- //default use auto ac.php as a callback file
- //default height of the auto complete box set to 100px height
- //default class for input/textarea box is jQACDiv for calling auto complete plugin
- $(“body”).jQautocomplete();
- });
- </script>
Advanced way to initialize the jQAC
- <script type=”text/javascript”>
- $(document).ready(function() {
- //initialize auto complete object
- //Three options variables for you to control the plugin
- $(“body”).jQautocomplete({“divclass”:”YOUR_OWN_CLASS”,”callbackFile”:”YOUR_SERVER_FILE.php”,”height”:100});
- });
- </script>
