Site not working in FireFox

Permalink
Site Navigation not working in firefox if keeps going from working fine to nothing being selectable... and the only way to make it work again is to refresh the page...

http://senate-group.co.uk/c5

Please could someone give me a clue on how to fix this problem?

senatetraining
 
Brainakazariua replied on at Permalink Reply
Brainakazariua
It seems to be something on the contact page that triggers it.
I can click around all your menus without problems untill I visit that page. Tried this multiple time, even visitted contact right away and there, nothing is clickable.

IE8 gives this error though, maybe you can find something out with it:

Message: Object is expected
Line: 86
Symbol: 1
Code: 0
URI:http://senate-group.co.uk/c5/js/merge-156-8.js...
ScottSandbakken replied on at Permalink Reply 1 Attachment
ScottSandbakken
I had the same problem on the contact page. Firebug threw me the attached error.

I see this at the beginning:
td = document.createElement("DIV");td.style.position = "absolute";td.style.top = "0px";td.style.left = "0px";td.style.width = "100%";td.style.height = "100%";td.style.zIndex = "1000";document.body.appendChild(td);

But if you are using jQuery (which Concrete5 does), you may want to do something like this.
var td = $('<div/>').css({
'position':"absolute",
'top' = "0px",
'left' = "0px",
'width' = "100%",
'height' = "100%",
'z-index = "1000";
});
$('body').append(td);