hey guys, i wonder if this is the best solution?
$('.folder a').click(function(e) {
e.preventDefault();
});
$('.folder a').dblclick(function(e) {
window.location.replace($(this).attr("href"));
});
it's working! would you do it in a different manner?