Team:ETH Zurich/collapsible

From 2013.igem.org

(Difference between revisions)
 
(7 intermediate revisions not shown)
Line 25: Line 25:
function CollapsibleContainerTitleOnClick() {
function CollapsibleContainerTitleOnClick() {
     // The item clicked is the title div... get this parent (the overall container) and toggle the content within it.
     // The item clicked is the title div... get this parent (the overall container) and toggle the content within it.
-
     alert($(".collapsibleContainerContent", $(this).parent()).slideToggle());
+
     $(".collapsibleContainerContent", $(this).parent()).slideToggle();
      
      
-
     // $(".collapsibleContainerContent", $(this).parent()).attr('title', );
+
     strBefore = "collapse";
 +
    str = "expand";
 +
    if ($(this).children('.collapsibleContainerTitle div').html().indexOf("expand") >= 0)
 +
    {
 +
        str = [strBefore, strBefore = str][0];
 +
    }
 +
    $(this).children('.collapsibleContainerTitle div').html($(this).children('.collapsibleContainerTitle div').html().replace(strBefore, str));
}
}
     $(document).ready(function() {
     $(document).ready(function() {

Latest revision as of 15:10, 25 October 2013