Advertisement
Guest User

Untitled

a guest
May 28th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.    
  2.         $(".auto_side").autocompleteArray(
  3.             [
  4.                 "Appellant", "Petitioner"
  5.             ],
  6.             {
  7.                 delay:10,
  8.                 minChars:1,
  9.                 matchSubset:1,
  10.                 //onItemSelect:selectItem,
  11.                 //onFindValue:findValue,
  12.                 autoFill:false,
  13.                 maxItemsToShow:10
  14.             }
  15.         );
  16.        
  17.         $(".auto_type").autocompleteArray(
  18.             [
  19.                 "Writ Petition","Civil Appeal"
  20.             ],
  21.             {
  22.                 delay:10,
  23.                 minChars:1,
  24.                 matchSubset:1,
  25.                 //onItemSelect:selectItem,
  26.                 //onFindValue:findValue,
  27.                 autoFill:true,
  28.                 maxItemsToShow:10
  29.             }
  30.         );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement