I can easily select all nodes with a given name in a namespace:
$("namespace\\:nodename")
But I need more: I want to select all nodes in a given namespace. Ideally, this:
$("namespace\\:*")
But the wildcard is not accepted.
TIA for your lights.