Created
July 22, 2013 05:07
-
-
Save WenLiangTseng/6051398 to your computer and use it in GitHub Desktop.
過濾特定的CSS並且替換樣式
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
$(".container .component").each(function() | |
{ | |
$(".container", this).each(function() { | |
if($(this).css('width') == 'auto') | |
{ | |
$(this).css('border', '1px solid #f00'); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment