Created
August 12, 2011 15:41
Revisions
-
jaimeiniesta created this gist
Aug 12, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ $(function() { function split( val ) { return val.split( /,\s*/ ); } function extractLast( term ) { return split( term ).pop(); } $( "#new_interest" ).autocomplete({ source: function( request, response ) { $.getJSON( "/tags.json", { term: extractLast( request.term ) }, response ); }, select: function( event, ui ) { // Add the selected term appending to the current values with a comma var terms = split( this.value ); // remove the current input terms.pop(); // add the selected item terms.push( ui.item.value ); // join all terms with a comma this.value = terms.join( ", " ); return false; }, focus: function() { // prevent value inserted on focus when navigating the drop down list return false; } }); }); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ [{ "id": 28, "name": "sex", "value": "sex" }, { "id": 29, "name": "drugs", "value": "drugs" }, { "id": 30, "name": "rock and roll", "value": "rock and roll" }]