Skip to content

Instantly share code, notes, and snippets.

View ryderr's full-sized avatar
🧶
yarn

Ryder Ripps ryderr

🧶
yarn
View GitHub Profile
@ryderr
ryderr / simplegallery
Created January 28, 2013 17:37
simple jquery gallery
$(document).ready(function() {
$(".pic").on("click", function(e){
e.preventDefault();
$("#content").find('li').removeClass("opened");
$(this).addClass("opened");
});
$(".next").on("click", function(e){
e.preventDefault();
var nextthing = $("#content li.opened").next('li');