The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
$(function() {
  $(':checkbox').attr('checked', $.cookie('pjax'))

  if ( !$(':checkbox').attr('checked') )
    $.fn.pjax = $.noop

  $(':checkbox').change(function() {
    if ( $.pjax == $.noop ) {
      $(this).removeAttr('checked')
      return alert( "Sorry, your browser doesn't support pjax :(" )
    }

    if ( $(this).attr('checked') )
      $.cookie('pjax', true)
    else
      $.cookie('pjax', null)

    window.location = location.href
  })
});