You can obtain the parent node object of any given node using the method getParent().
To obtain the parent node, using the jsTreeID (nodeID), use:
var parentNode = [Tree].getNode(nodeID).getParent();
To obtain the parent node for the current selected node, use:
var parentNode = [Tree].getSelectedNode().getParent();