Skip to content

Instantly share code, notes, and snippets.

@bverbeken
Created November 29, 2013 11:00
Show Gist options
  • Save bverbeken/7704237 to your computer and use it in GitHub Desktop.
Save bverbeken/7704237 to your computer and use it in GitHub Desktop.
WnotW pricing table fix
$('#pricingModal').click(function(e){
e.preventDefault();
var scroll = $(window).scrollTop();
$('#modalBackdrop, #modalPrice').show();
$('#modalPrice').css({
position: 'absolute', // This is missing
top: scroll + 100
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment