I have a table with many columns, some of which have divs which are hidden by default. After clicking on that particular cell, I am making those divs appear by using jquery’s fadeIn effect. Now I want a functionality, where, when I click on cell of some other row, I want all other opened divs to get closed except the ones on that row which I am clicking.
I tried to check display property of opened divs but I am getting display property as undefined. Any suggestions how to go on about this ?
I have a table with many columns, some of which have divs which are
Share
I think what you’re after is this:
When clicking certain cell, it will fade out the
<div>in all the cells that are not in the same row as the clicked cell.Live test case.