I'm interested in utilizing the example discussed in this link to apply a Tooltip to multiple nodes.
However, I'd like to pass NodesList instead. Something along these lines:
new Tooltip({
connectId: query('.list-container'),
selector: query('.list-container-item'),
getContent: function(matchedNode) {
console.debug('this is a tooltip for ', matchedNode);
}
});
Unfortunately, this results in an error: TypeError: undefined is not a function