I just found this js for creating a mindmap, and the only thing that doesn't work are the links. I'm linking to the github as it would be way too much code to place here: https://github.com/kennethkufluk/js-mindmap
I've tried this so far..
$('.node.active').mousedown( function(){
var url = $(this).attr('href');
window.location(url, '_blank');
});
Still learning javascript/jquery :)
Thanks for everything!!!