Skip to content

Instantly share code, notes, and snippets.

View anataliocs's full-sized avatar
Working on Stellar Quest 3

Chris Anatalio anataliocs

Working on Stellar Quest 3
View GitHub Profile
@anataliocs
anataliocs / etc
Created October 23, 2013 18:58
Grails Servlet response REST IMPORTS
HTTPServletResponse.SC_OK
.findById(params.goalInfoId, [sort: "date", order: "desc"])
@anataliocs
anataliocs / clickevent.js
Created October 23, 2013 18:51
jQuery click event live
//Add click event
$('#firstTimeHandoutLink').live('click', function() {
openHandout();
});
@anataliocs
anataliocs / autoscroll.js
Created October 23, 2013 18:50
Scroll scrollable div within page to anchor link
$('html, body').animate({
scrollTop: $('#groupSpan'+id).offset().top
}, -100);