Skip to content

Instantly share code, notes, and snippets.

@lappi-lynx
Created December 6, 2012 08:25
Show Gist options
  • Save lappi-lynx/4222728 to your computer and use it in GitHub Desktop.
Save lappi-lynx/4222728 to your computer and use it in GitHub Desktop.
Pagination align
$(".pagination").each ->
parent_width = $(this).parent().width()
pwidth = $(this).width()
align = (parent_width - pwidth) / 2
$(this).css "margin-left", align
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment