Solved my own problem. Still not sure what was causing my original problem, but I found a way around it. I just wrote my own JavaScript function based on what they have at: 1&1 Hosting
Here's the meat of it:
Code:
function toggle(idparam) {
var idparam = idparam;
var minus = idparam + "-minus";
var plus = idparam + "-plus";
if (document.getElementById(idparam).style.display == "none") {
document.getElementById(idparam).style.display="";
document.getElementById(minus).style.display="";
document.getElementById(plus).style.display="none";
} else {
document.getElementById(idparam).style.display="none";
document.getElementById(minus).style.display="none";
document.getElementById(plus).style.display="";
}
}
Then I encapsulated the table row that I wanted to toggle in a <tbody> tag with the unique id and voila! ... worky worky
Here's what the working version looks like:
http://people.clemson.edu/~rcraven/test/test2.html
Bookmarks