(Debugged click_open so that you can have more than one on a page) |
|||
Line 196: | Line 196: | ||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
− | + | $(".click_open").click(function() { | |
+ | var myself = $(this); | ||
+ | var my_content = myself.find(".click_content"); | ||
+ | var my_icon = myself.find(".click_icon"); | ||
− | + | if ( my_content.is(':visible')) { | |
− | + | $(".click_content").hide(); | |
− | + | $(".click_icon").html("▼"); | |
− | + | $(".click_open").css("background-color", "#f2f2f2"); | |
− | + | } | |
− | + | ||
− | + | else { | |
− | + | $(".click_content").show(); | |
− | + | $(".click_icon").html("▶"); | |
− | + | $(".click_open").css("background-color", "#ffffff"); | |
− | + | } | |
− | + | }); | |
− | + | ||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
Revision as of 16:02, 13 May 2016