Guest User

Untitled

a guest
Jan 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $($('.ui-autocomplete-input')[1]).find('.ui-menu-item').find('.ui-corner-all').css('font-size','12px');
  2.  
  3. $("#input1").autocomplete({
  4. delay: 0,
  5. minLength: 0,
  6. source: ["One", "Two", "Three"]
  7. }).data("autocomplete")._renderItem = function(ul, item) {
  8. return $("<li class="li-class"></li>")//added list class here
  9. .data("item.autocomplete", item)
  10. .append("<a class="a-class">" + item.label + "</a>") //added the anchor class here.
  11. .appendTo(ul);
  12. };​
Add Comment
Please, Sign In to add comment