$("#tags").autocomplete(["c++", "java", "php", "coldfusion", "javascript", "asp"], {
width: 320,
max: 4,
highlight: false,
multiple: true,
multipleSeparator: " ",
scroll: true,
scrollHeight: 300
});
)};
I am trying to use Jquery UI autocomplete with multipleSeparator. Which means that I can pass a string array as { " AND ", " OR " } and when someone will type like:
C++ and Java and p
the php will come.
So basically I am trying to make a logical operator based expression.
Looking for Candidate: C# or C++ and ASP
I need intelli sense in C# as well as in C++ but not in or , and.
Please help how can I amend?