The code in question seems to be:
- Code: Select all
function dE(n, s, type)
{
if (!type)
{
type = 'block';
}
var e = document.getElementById(n);
if (!s)
{
s = (e.style.display == '' || e.style.display == type) ? -1 : 1;
Uncaught TypeError: Cannot read property 'style' of null
}
e.style.display = (s == 1) ? type : 'none';
}
Is there any help you might be able to provide? Thanks!
Edit: Everything works correctly on an iPhone, but no desktop browsers.

