Team:UNITN-Trento/JS/Protocols
From 2013.igem.org
Line 1: | Line 1: | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
$(document).ready(function() { | $(document).ready(function() { | ||
Line 63: | Line 27: | ||
//Open active PS | //Open active PS | ||
$(".tn-spoiler-protocol-active").children("div").slideDown(600, function() { | $(".tn-spoiler-protocol-active").children("div").slideDown(600, function() { | ||
- | $.scrollTo($(".tn-spoiler-protocol-active > a").attr("href"),$(".tn-spoiler-protocol-active > a").attr("href")); | + | $("html,body").scrollTo($(".tn-spoiler-protocol-active > a").attr("href"),$(".tn-spoiler-protocol-active > a").attr("href")); |
}); | }); | ||
} | } | ||
Line 69: | Line 33: | ||
}); | }); | ||
- | |||
//Open spoiler based on Hash (at page request) | //Open spoiler based on Hash (at page request) | ||
if (document.location.hash != "") { | if (document.location.hash != "") { | ||
$(".tn-spoiler-protocol > a").each(function() { | $(".tn-spoiler-protocol > a").each(function() { | ||
+ | //Select the PS based on the hash | ||
if ($(this).attr("href") == document.location.hash) { | if ($(this).attr("href") == document.location.hash) { | ||
+ | //Remove the 'active' status | ||
$(".tn-spoiler-protocol-active").removeClass("tn-spoiler-protocol-active"); | $(".tn-spoiler-protocol-active").removeClass("tn-spoiler-protocol-active"); | ||
- | + | //Add the 'active' status to the current link parent | |
+ | al.parent().addClass("tn-spoiler-protocol-active"); | ||
+ | //Close all 'non-active' PS | ||
$(".tn-spoiler-protocol").not(".tn-spoiler-protocol-active").children("div").slideUp(); | $(".tn-spoiler-protocol").not(".tn-spoiler-protocol-active").children("div").slideUp(); | ||
- | $(".tn-spoiler-protocol-active").children("div"). | + | //Open active PS |
+ | $(".tn-spoiler-protocol-active").children("div").slideDown(600, function() { | ||
$("html,body").scrollTo(document.location.hash,document.location.hash); | $("html,body").scrollTo(document.location.hash,document.location.hash); | ||
}); | }); | ||
Line 83: | Line 51: | ||
}); | }); | ||
} | } | ||
- | |||
}); | }); |
Revision as of 16:33, 8 July 2013
$(document).ready(function() {
/*Protocol Spoiler*/ $(".tn-spoiler-protocol div").not(".tn-spoiler").slideUp();
//Reset first spoiler link default $(".tn-spoiler-protocol > a").each(function() { var al = $(this); //Modify click event of each ProtocolSpoiler link al.click(function(e) {
e.preventDefault();
if(al.parent().hasClass("tn-spoiler-protocol-active")) { //Remove the 'active' status $(".tn-spoiler-protocol-active").removeClass("tn-spoiler-protocol-active"); //Slide up all 'non-active' PS $(".tn-spoiler-protocol").not(".tn-spoiler-protocol-active").children("div").slideUp(); } else { //Remove the 'active' status $(".tn-spoiler-protocol-active").removeClass("tn-spoiler-protocol-active"); //Add the 'active' status to the current link parent al.parent().addClass("tn-spoiler-protocol-active"); //Close all 'non-active' PS $(".tn-spoiler-protocol").not(".tn-spoiler-protocol-active").children("div").slideUp(); //Open active PS $(".tn-spoiler-protocol-active").children("div").slideDown(600, function() { $("html,body").scrollTo($(".tn-spoiler-protocol-active > a").attr("href"),$(".tn-spoiler-protocol-active > a").attr("href")); }); } }); });
//Open spoiler based on Hash (at page request) if (document.location.hash != "") { $(".tn-spoiler-protocol > a").each(function() { //Select the PS based on the hash if ($(this).attr("href") == document.location.hash) { //Remove the 'active' status $(".tn-spoiler-protocol-active").removeClass("tn-spoiler-protocol-active"); //Add the 'active' status to the current link parent al.parent().addClass("tn-spoiler-protocol-active"); //Close all 'non-active' PS $(".tn-spoiler-protocol").not(".tn-spoiler-protocol-active").children("div").slideUp(); //Open active PS $(".tn-spoiler-protocol-active").children("div").slideDown(600, function() { $("html,body").scrollTo(document.location.hash,document.location.hash); }); } }); } });