User:Anita Nguyen: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
Line 8: Line 8:
==Education==
==Education==
<!--Include info about your educational background-->
<!--Include info about your educational background-->
==Useful links==
*[[OpenWetWare:Welcome|Introductory tutorial]]
*[[Help|OpenWetWare help pages]]
<html>
<html>
<head>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">  
<script type="text/javascript">
$(document).ready(function(){
$(document).ready(function(){
$(".flip").click(function(){
  $("button").click(function(){
     $(".panel").slideToggle("slow");
     $(this).hide();
   });
   });
});
});
</script>
</script>
<style type="text/css">
div.panel,p.flip
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel
{
height:120px;
display:none;
}
</style>
</head>
</head>
 
<body>
<body>
<button>Click me</button>
<div class="panel">
<p>Because time is valuable, we deliver quick and easy learning.</p>
<p>At W3Schools, you can study everything you need to learn, in an accessible and handy format.</p>
</div>
<p class="flip">Show/Hide Panel</p>
</body>
</body>
</html>
</html>
==Useful links==
*[[OpenWetWare:Welcome|Introductory tutorial]]
*[[Help|OpenWetWare help pages]]

Revision as of 08:21, 7 September 2010

Contact Info

Education

Useful links

<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){

 $("button").click(function(){
   $(this).hide();
 });

}); </script> </head>

<body> <button>Click me</button> </body> </html>