Chris, when I try to get the text's size the actual <text></text> disappears.
I somewhat got it. I'm using .each(); jQuery function to iterate
through ".node" DOM element. Now I need to assign getSize variable to
width and height.
$(".node").each(function(index) {
var getText = $(this).text();
var getSize = getText.getComputedTextLength;
alert(getSize);
});