Skip to content

Instantly share code, notes, and snippets.

@arturkot
Created December 14, 2012 14:27
Show Gist options
  • Save arturkot/4285809 to your computer and use it in GitHub Desktop.
Save arturkot/4285809 to your computer and use it in GitHub Desktop.
IE 7 – add bullets
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