function expandAll(table,val){
if (document.getElementById) {
var row;
var rown;
var tblname;
if ((tblname = document.getElementById(table + 'Tab')) != null) {
var totRows = tblname.rows.length;
if (val == 'show') {
for(i=0;i < totRows;i++){
rowid = table+ i;
if ((row = document.getElementById(rowid)) != null) {
row.style.display='block';
}
}
}
}
In the above function When Clicking on hyperlink of expand all or collapse all with the value show it calls the above function it expands all the rows that have details for each row in the table .We need Jquery code of this javascript function.here "table" refers to the table name and