Can anyone explain this behavior, imagine you have a jQuery collection, like this:
var list = $("#mySelect").children().filter(":selected");
Then I want to create a text-join to get "pX, pY" by using the following template:
var concatenation = $.tmpl("p${$data.val()}, ", list);
Result is a text node with only the first value in list "pX,".
Of course there are other ways to solve this example, eg.
"p" + $("#mySelect").val().join(", p");
With some trimming. But my question is about the tmpl behaviour, I don't understand why it only takes the first value.