Template:Team:Amsterdam/ernst/scripts

From 2012.igem.org

(Difference between revisions)
 
(115 intermediate revisions not shown)
Line 1: Line 1:
<html>
<html>
-
<script type='text/javascript' src='http://f.cl.ly/items/0E0N2k3R001J2T2q3A0D/jquery-1.2.3.min.js'></script>
+
<!-- Methode of injecting stuff into the header before page load! :D thank god that mediawiki includes jquery standard ;) -->
 +
<script type='text/javascript'>
 +
$(document).ready( function() {
 +
    //$('head > style[media="screen, projection"]').remove();
 +
    //$('head > script[src="/forum/forum_scripts.js"]').remove();
 +
    //$('head > link[href="/wiki/skins/common/commonPrint.css?270"]').remove();
 +
    $("head").append("<link>");
 +
    css = $("head > :last");
 +
    //css = $("head").children(":last");
 +
    css.attr({
 +
      rel:  "stylesheet",
 +
      type: "text/css",
 +
      href: "/testcss.css"
 +
    });
 +
});
 +
</script>
 +
<!-- Remove all empty <p> tags -->
 +
<script type="text/javascript">
 +
    $(document).ready(function() {
 +
        $("p").filter( function() {
 +
            return $.trim($(this).html()) == '';
 +
        }).remove()
 +
    });
 +
</script>
 +
 +
<!-- JQuery menu animations -->
 +
<script type='text/javascript' src ='http://cherne.net/brian/resources/jquery.hoverIntent.minified.js'></script>
<script type='text/javascript'>
<script type='text/javascript'>
-
function mainmenu(){
+
function navmenu(){
-
$(" #nav ul2 ").css({display: "none"}); // Opera Fix
+
$(" #navmenu ul ul ").css({display: "none", height:'auto'}); // Opera Fix
-
$(" #nav li2").hover(function(){
+
 
-
$(this).find('ul2:first').css({visibility: "visible",display: "none"}).show(400);
+
var config = {   
-
},function(){
+
    over: function(){
-
$(this).find('ul2:first').css({visibility: "hidden"});
+
$(this).find('ul:first').animate({display:'block', height:'show'},{queue:true, duration:400});
-
});
+
},  
 +
    timeout: 2500, // number = milliseconds delay before onMouseOut   
 +
    out: function(){
 +
$(this).find('ul:first').animate({height:'hide', display:'none'},{queue:true, duration:400});
 +
}
 +
};
 +
 
 +
$(" #navmenu ul li").hoverIntent(config);
}
}
   
   
-
$(document).ready(function(){
+
$(document).ready(function(){
-
mainmenu();
+
navmenu();
});
});
</script>
</script>
 +
 +
<!-- Facebook RSS Feed Processor -->
 +
<script type='text/javascript' src='http://www.zazar.net/developers/jquery/zrssfeed/jquery.zrssfeed.min.js'></script>
 +
<script type='text/javascript' src='scripts/fb-feed-collector.js?action=raw'></script>
</html>
</html>

Latest revision as of 13:05, 12 September 2012