expand collapse

Download Expand Collapse

If you can't read please download the document

Upload: subbarao-mahendrakar

Post on 11-Nov-2015

217 views

Category:

Documents


3 download

DESCRIPTION

clooaps

TRANSCRIPT

function ExpandCollapse(ElementId) {var ClickedElement = document.getElementById(ElementId);var SectionElement = ClickedElement.parentNode;var GroupElement = SectionElement.parentNode;var SpanSiblings = SectionElement.getElementsByTagName("span");var DivSiblings = SectionElement.getElementsByTagName("div");if (ClickedElement.innerHTML == "-") {// this code turns this section offClickedElement.innerHTML = "+";SpanSiblings[1].innerHTML = "Show";DivSiblings[0].style.display = "none";} else {// this code turns this section on and all other sections offClickedElement.innerHTML = "-";SpanSiblings[1].innerHTML = "Hide";DivSiblings[0].style.display = "block";var otherSections = GroupElement.getElementsByTagName("div");for (i=0; i