I have a page that uses the following Javascript for a show hide function
This works fine in Internet Explorer but is non functional in Firefox, Chrome and Safari does not work
Working page in ie can be seen here
its the hear more clips button that im having the problem with
Code:
function showHide(shID) {
if (document.getElementById(shID)) {
if (document.getElementById(shID+'-show').style.display != 'none') {
document.getElementById(shID+'-show').style.display = 'none';
document.getElementById(shID).style.display = 'block';
}
else {
document.getElementById(shID+'-show').style.display = 'inline';
document.getElementById(shID).style.display = 'none';
}
}
}
Working page in ie can be seen here
its the hear more clips button that im having the problem with
Comment