UNPKG

jquery.ajax-combobox

Version:

jQuery plugin to create a text box which can auto-complete and pull-down-select.

30 lines 824 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>Simple text box: jquery.ajax-combobox</title> <link rel="stylesheet" href="../../dist/css/jquery.ajax-combobox.css"> <script src="../../node_modules/jquery/dist/jquery.min.js"></script> <script src="../../dist/js/jquery.ajax-combobox.min.js"></script> <script> $(function() { $('#foo').ajaxComboBox( '../../dist/php/jquery.ajax-combobox.php', { db_table: 'nation', plugin_type: 'simple' } ); }); </script> </head> <body> <h1>Simple text box: jquery.ajax-combobox</h1> <form action="send.php" method="post"> <label for="foo">Nation:</label><br> <input id="foo" name="foo" type="text" size="40"> <p><button type="submit">Send</button></p> </form> </body> </html>