Guest User

Untitled

a guest
Jul 22nd, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // search form in header
  2. $(document).ready(function(){
  3. $("#search_form input[type=text]").autocomplete('/autocomplete',{width:130, minChars:1}).result(function(event, data, formatted) {
  4. if (data)
  5. $(this).val(data[1]);
  6. $('#search_form').submit();
  7. });
  8. $("#search_form input[type=text]").example(function(){
  9. return $(this).attr('title');
  10. });
  11. });
Add Comment
Please, Sign In to add comment