I am using Jquery Tokeninput to select multiple values but when i tried to select the values in text box it’s always coming blank I am using below Jquery function to retreive the val.
Please refer to to my previous question on stack Here
var values = $("#txtTest").val();
$("#Button1").click(function() {
alert(values);
return false;
});
Please find the screen shot or same.

The text box is not actually what holds the selections its a list
EDIT
That’s just a hack to get what you wanted but the library has a method to get the values in the list
selector.tokenInput("get");