Difference between revisions of "Template:2016Bottom"

(Debugged click_open so that you can have more than one on a page)
Line 196: Line 196:
 
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
$(".click_open").click(function() {
+
$(".click_open").click(function() {
 +
var myself = $(this);
 +
var my_content = myself.find(".click_content");
 +
var my_icon = myself.find(".click_icon");
  
//if the content is hidden, show it
+
if ( my_content.is(':visible')) {
if ( $('.click_content:visible').length == 0) {
+
$(".click_content").hide();
$(".click_content").show();
+
$(".click_icon").html("");
$(".click_icon").html("");
+
$(".click_open").css("background-color", "#f2f2f2");
$(".click_open").css("background-color", "#ffffff");
+
}
}
+
  
else {
+
else {
$(".click_content").hide();
+
$(".click_content").show();
$(".click_icon").html("");
+
$(".click_icon").html("");
$(".click_open").css("background-color", "#f2f2f2");
+
$(".click_open").css("background-color", "#ffffff");
}
+
}
 
+
});
});
+
  
 
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

Revision as of 16:02, 13 May 2016