Skip to content

Instantly share code, notes, and snippets.

@ginirsss
Created May 24, 2016 21:17
Show Gist options
  • Save ginirsss/28f7130ded964b9c74a3ee5f2b674465 to your computer and use it in GitHub Desktop.
Save ginirsss/28f7130ded964b9c74a3ee5f2b674465 to your computer and use it in GitHub Desktop.
resize element
$(window).resize(function() {
$(".fondo-completo").width($(window).width() );
$(".fondo-completo").width($(window).width() - 40);
$(".fondo-completo").height($(window).height() );
$(".fondo-completo").height($(window).height() - 40);
}).resize();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment