Created
December 14, 2012 14:27
-
-
Save arturkot/4285809 to your computer and use it in GitHub Desktop.
IE 7 – add bullets
This file contains 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
if ($(html).hasClass('ie7')) { | |
$('.big-list').children('li').each(function() { | |
var $this = $(this), | |
txt = $this.text(); | |
$this.text('*' + txt); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment