Team:UNITN-Trento/JS/Main

From 2013.igem.org

(Difference between revisions)
(Created page with "/*Acts once the document is loaded*/ $(document).ready(function() { /*Move the tn-main-wrap as child of <body>*/ $("#tn-main-wrap").prependTo($("body")); - Spoiler JS: $("....")
Line 3: Line 3:
/*Move the tn-main-wrap as child of <body>*/
/*Move the tn-main-wrap as child of <body>*/
$("#tn-main-wrap").prependTo($("body"));
$("#tn-main-wrap").prependTo($("body"));
 +
/*Move the menubars in the tn-main-wrap*/
 +
$("#menubar.left-menu").appendTo($("#tn-main-wrap");
 +
$("#menubar.right-menu").appendTo($("#tn-main-wrap");
/*Spoiler JS*/
/*Spoiler JS*/

Revision as of 09:38, 25 June 2013

/*Acts once the document is loaded*/ $(document).ready(function() { /*Move the tn-main-wrap as child of <body>*/ $("#tn-main-wrap").prependTo($("body")); /*Move the menubars in the tn-main-wrap*/ $("#menubar.left-menu").appendTo($("#tn-main-wrap"); $("#menubar.right-menu").appendTo($("#tn-main-wrap");

/*Spoiler JS*/ $(".tn-spoiler div").slideUp(); $(".tn-spoiler a").click(function(e) { e.preventDefault(); $(".tn-spoiler-active").removeClass("tn-spoiler-active"); $(this).parent().addClass("tn-spoiler-active"); $(".tn-spoiler").not(".tn-spoiler-active").children("div").slideUp(); $(".tn-spoiler-active").children("div").slideToggle(); }); });