I have this code which will hide everything inside a certain div:
$('#middlecolumn *').hide();
So now I would like to set the ID as a variable, so I did:
var qw = '#middlecolumn';
$(qw + '*').hide();
This doesn't seem to work. It hides the ID as well as everything inside it. How do I write it the proper way?