Last active
August 27, 2015 09:11
-
-
Save oleksapro/70f15233f7df5b8e32a9 to your computer and use it in GitHub Desktop.
js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://www.codeatlarge.com/percentage-minus-pixels/ | |
var $wrap = $(".wrap"); | |
var $navitem = $(".wrap nav .navitem"); | |
$(window).resize(function(){ | |
var totalWidth = $wrap.width(); | |
var calcWidth = (totalWidth - 200) / 3; | |
$navitem.width(calcWidth); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment