Hello,
My question is if anyone knows how too achieve the effect of creating a slidedown from a tablecell, without having the whole table expand with.
It has too slide independantly from the location of that particular row on top off the table, so too speak
otherwise it looks ugly as you can see from my page (click on the first row) I placed the div inside the cell there
I think I have too find the position off the tablecell and position it on top off it, but I do not know how to do that yet.
this is the code I used for the slide:
$(".reg_info_body").hide();
$(".reg_info").toggle(function(){
$(this).children(".reg_info_body").slideDown(100);
}, function(){
$(this).children(".reg_info_body").slideUp(300);
});
thanks, Richard