Team:Hong Kong HKUST/klchuab

From 2013.igem.org

(Difference between revisions)
(Blanked the page)
 
Line 1: Line 1:
 +
<html>
 +
<head>
 +
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
 +
</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>

Latest revision as of 16:41, 26 June 2013

testing