|
I use mozilla and the hideshow function sometimes
does not work.
The chunk always dissepears, but sometimes I
can't make it appear back.
I don't have this problem in internet
explorer.
This is the function:
function hideshow(num) {
idstring = "element-" + num; chunk = document.getElementById(idstring); if ( chunk.style.display == "none") { chunk.style.display = chunk.style.tag; } else { chunk.style.tag = chunk.style.display; chunk.style.display = "none"; } } |
_______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users
Community help: http://wiki.bestpractical.com Commercial support: [EMAIL PROTECTED] Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com We're hiring! Come hack Perl for Best Practical: http://bestpractical.com/about/jobs.html
