Skip to content

Instantly share code, notes, and snippets.

@jakeboxer
Created May 22, 2013 22:11
Show Gist options
  • Select an option

  • Save jakeboxer/5631365 to your computer and use it in GitHub Desktop.

Select an option

Save jakeboxer/5631365 to your computer and use it in GitHub Desktop.
centerMobileBanner = ->
$mobileBannerText = $('.mobile-banner span')
$mobileBannerText.css('left', ($(window).width() * 0.5) - $mobileBannerText.width() * 0.5)
$(document).ready(centerMobileBanner)
$(window).resize(centerMobileBanner)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment