I have the following piece of code:
$(\".option_box .option_name\").click(function () { $(this).siblings(\".collapsible\").toggle(); $(this).toggleClass(
As i understood: you would like to collapse table with mouseout. Why don't you add something like this:
$(".collapsible").mouseleave(function() { $(".collapsible").hide(); })
doesn't it work for you?