Team:Hong Kong HKUST/klchuab

From 2013.igem.org

(Difference between revisions)
 
(3 intermediate revisions not shown)
Line 1: Line 1:
<html>
<html>
-
<style type="text/css">
+
<head>
-
#top-section{visibility='visible'}
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
-
</style>
+
</script>
 +
<script>
 +
$(document).ready(function(){
 +
  $("li.menu").mouseenter(function(){
 +
    $("p.123 ").show();
 +
  });
 +
  $("li.menu").mouseleave(function(){
 +
    $("p.123 ").hide();
 +
  });
 +
});
 +
</script>
 +
</head>
 +
<body>
 +
 
 +
<div class="menu"><ol>
 +
<li><a href="https://2013.igem.org/Team:Hong_Kong_HKUST">Home</a></li>
 +
</ol>
 +
</div>
 +
 
 +
<p class="123">testing</p>
 +
 
 +
</body>
</html>
</html>

Latest revision as of 16:41, 26 June 2013

testing