Skip to content

Instantly share code, notes, and snippets.

View boykoc's full-sized avatar

Cody Boyko boykoc

View GitHub Profile
@gelicia
gelicia / _.md
Created February 16, 2013 13:38
Simple(?) Horizontal Stacked Bar Charts
@kpfefferle
kpfefferle / rails_month_dates.js
Created February 28, 2012 02:02
jQuery: Limit day in Rails date_select based on month and year
$(function(){
railsMonthDates();
$("select[id*=_2i], select[id*=_1i]").change( railsMonthDates );
});
function railsMonthDates() {
$("select[id*=_2i]").each(function(){
$monthSelect = $(this);
$daySelect = $(this).siblings("select[id*=_3i]");
$yearSelect = $(this).siblings("select[id*=_1i]");