$(document).ready(function() { $(".expandomaticExpander").click(function() { var expander = this; var childId = expander.id.replace("Expander", "Description"); var jChild = $("#" + childId); var child = document.getElementById(childId); if (child.style.display == "block"){ // HIDE THE DESCRIPTION child.style.display="none"; } else { // SHOW THE DESCRIPTION child.style.display="block"; } }); //close click( */ $("#expandomaticAddAnchor").click(function() { $("#expandomaticAddAnchor").hide(0); var expander = this; var jChild = $("#expandomaticAddForm"); jChild.animate({ "width": "700px" }, 1500); }); //close click( */ });