I am using the jquery checkboxtree plugin which works great. I have a situation where I want to programmatically expand certain nodes.
I see that I can do by Id as in the example:
$('#tabs-5-expand').click(function(){
$('#tree5').checkboxTree('expand', $('#tabs-5-node23'));
});
and I was hoping that I could expand multiple nodes using a class name like this
$('#tabs-5-expand').click(function(){
$('#tree5').checkboxTree('expand', $('.bluetabs'));
});
but it doesn't seem to do anything. Does anyone know if there is a way to programatically expand or collapse nodes here using class selectors?