Is there a way to find the width of text in Javascript (jQuery is used, so happy to take advantage of any functions they provide) for a hidden element?
I want to have a graph of nodes.  Each node has text inside and I want the nodes to have a width that accommodates the text up to a limit.  So I essentially create hidden <div>'s with some html inside.  Then I use jQuery to display those <div>'s on the graph at the right spots.  It's important that I know the correct width ahead of time so I can construct the graph properly.
UPDATE: Just to clarify, I need to know how wide some text is while it's hidden. Blender gave an answer below, I'm hoping there's a less tricky way?