Finding Table Row Number In Ie
I use following statement to find number of table rows, it works fine in Firefox & Chrome but always returns 1 in IE, what is going wrong? document.getElementById('<%=tblBas
Solution 1:
Try:
document.getElementById('<%=tblBasket.ClientID %>').getElementsByTagName('tr').length
Post a Comment for "Finding Table Row Number In Ie"