Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Created July 30, 2014 04:26
Show Gist options
  • Select an option

  • Save dstyle0210/08a9ddc58ae3c78deafb to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/08a9ddc58ae3c78deafb to your computer and use it in GitHub Desktop.
IE7 전용 div의 z-index 역으로 적용.
//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