tags:

views:

288

answers:

1

Error in HideShowPanel Method: TypeError: document.all is not a function

Error in SetExpandedDIVInfo Method: TypeError: document.all is not a function

+1  A: 

document.all is not a valid javascript function in non IE browsers. You should use standard compatible document.getElementById

Alex Reitbort