Skip to content

Instantly share code, notes, and snippets.

@eakmotion
Created November 21, 2012 22:25
Show Gist options
  • Save eakmotion/4128261 to your computer and use it in GitHub Desktop.
Save eakmotion/4128261 to your computer and use it in GitHub Desktop.
testing
<script type="text/javascript">
// $("a").hide("slow").show("slow");
$("a").hover(function(event){
$(this).toggleClass("hilight");
}).click(function(event){
event.preventDefault();
$(this).show("slow" , function(){
$(this).toggleClass("bigger");
})
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment