This is a simple question that hopefully has a similar simple answer to it as well.
If the id of a div selector is stored in a string, how can I select the div object dynamically.
This is what I currently do, and I am convinced that jQuery must have its own way of doing this:
<div id="boo">Some content...</div>
var divName = 'boo';
var divObj = $('#' + divName); // I really don't like the concatenation of '#'