Skip to content

Instantly share code, notes, and snippets.

@katherineschultz
Created July 20, 2014 22:00
Show Gist options
  • Save katherineschultz/2be0a9e7caa899828e5e to your computer and use it in GitHub Desktop.
Save katherineschultz/2be0a9e7caa899828e5e to your computer and use it in GitHub Desktop.
jquery basic function with jquery plugin
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js">
</script>
<script>
$(function() {
$('.me, .me2').click(function() {
$('.photo').toggleClass('swap');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment