Created
July 30, 2014 04:26
-
-
Save dstyle0210/08a9ddc58ae3c78deafb to your computer and use it in GitHub Desktop.
IE7 전용 div의 z-index 역으로 적용.
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
| //jQuery Extend relativeSet : dstyle | |
| //IE7을 위해 position z-index순서를 적용해줌. | |
| (function($){$.fn.relativeSet=function(){$(this).each(function(i){$(this).css({"position":"relative","z-index":(99999-i)});});};})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment