(function($) {
  $.fn.stickyFooter = function() {
    this.each(function() {
      var banner = $(this);
      console.log(banner.innerHeight());
    });
    return this;
  };
})(jQuery);
