Skip to content

Instantly share code, notes, and snippets.

@enriqueaf
Created December 6, 2009 13:11
Show Gist options
  • Save enriqueaf/250219 to your computer and use it in GitHub Desktop.
Save enriqueaf/250219 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery("#subm > *").hover(function() {
jQuery(this).animate({ paddingLeft: '20px' }, 250);
}, function() {
jQuery(this).animate({ paddingLeft: 0 }, 250);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment