Skip to content

Instantly share code, notes, and snippets.

@ckng
Created April 29, 2014 10:34
Show Gist options
  • Save ckng/11396439 to your computer and use it in GitHub Desktop.
Save ckng/11396439 to your computer and use it in GitHub Desktop.
IE8 last-child selector
(function ($) {
// IE8 last-child selector
Drupal.behaviors.lastChildIE8 = {
attach: function (context, settings) {
if (/msie [1-8]{1}[^0-9]/.test(navigator.userAgent.toLowerCase())) {
$('*:last-child').addClass('last-child');
}
}
};
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment