Skip to content

Instantly share code, notes, and snippets.

@asenchi
Created July 12, 2009 03:39
Show Gist options
  • Save asenchi/145506 to your computer and use it in GitHub Desktop.
Save asenchi/145506 to your computer and use it in GitHub Desktop.
Blog: Working with JQuery
// <script type="text/javascript">
$(document).ready(function() {
$("a").hover(function() {
$(this).parents("p").addClass("highlight");
},function() {
$(this).parents("p").removeClass("highlight");
});
});
// </script>
// <script type="text/css">
.highlight {
background-color: #CCCC33;
}
// </script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment