Posted on: 11/28/2014 12:30:04 PM | Views : 409

Hello Everyone
I have a page which is displaying multiple (row data) data on a page using table and td tag of the table contains 4 divs which are showing different data. All four divs has different ids in same td.
but same patterns repeats for all the rows with different data. now i have to hide 1 div of all the rows which is inside the td and for that div all the rows has same id. how can i achive this
can any one help me ??
following is the structure of table in my case. now i have to hide div with the id=a from all the row on using javascript or jquery ...........
<table> <tr> <td>test</td> <td>test</td> <td>test</td> <td>test</td> <td> <div id='a'>test1</div> <div id='b'>test1</div> <div id='c'>test1</div> <div id='d'>test1</div> </td> <td></td> </tr> <tr> &l ...

Go to the complete details ...