Expanding (folding) category lists

I really must get around to implementing these plug-ins to stop clutter in the WordPress category and page lists.

See also here.

Consider the following JavaScript:
// Toggle Show/Hide

function toggle(name) {

if (document.getElementById(name).style.display == "block") {

document.getElementById(name).style.display = "none";

} else {

document.getElementById(name).style.display = "block";

}

}

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *