jqueryui autocomplete limit multiple selections
I am using the jQuery UI autocomplete and I am attempting to limit the multiple results. Basically I'm building a PM system I am using the autocomplete for the to field. But I'm trying to limit the amount of people a single message can be sent to. So like limit the max selections to 25. Is there any way to limit this? Also any ideas on a visual indicator that they have reached the max? select: function( event, ui){ var terms = split( this.value ); if(terms.length <= 2) { // remove the current input terms.pop(); // add the selected item terms.push( ui.item.value ); // add placeholder to get the