Guest User

Untitled

a guest
Jul 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <script type="text/javascript" src="../../inc/bsn.AutoSuggest_2.1.3_comp.js"/></script>
  2.  
  3. <script type="text/javascript">
  4. window.onload = init;
  5. function init() {
  6.  
  7. var options = {
  8. script: "dyn.toolsGetLocation.php?fieldname=test&locationtype=station&",
  9. varname: "findlocation",
  10. json: true,
  11. delay: 100,
  12. timeout: 10000,
  13. maxresults: 10,
  14. callback: function (obj) { document.getElementById('testid').value = obj.id; }
  15.  
  16. };
  17. var as = new bsn.AutoSuggest('idOfTextfield', options);
  18. }
  19. </script>
  20.  
  21. <p>
  22. <label>test auto-suggest: </label>
  23. <input type="text" id="location_find" />
  24. </p>
Add Comment
Please, Sign In to add comment