LoginSignup
3
3

More than 5 years have passed since last update.

Twenty Eleven テーマのメニューの IE6 対応

Last updated at Posted at 2012-10-25

Twenty Eleven のマウスをのせると出てくるサブメニューは li:hover で設定されているので、IE6 では動きません。

しょうがないので JS で書きます。

jQuery(function ($) {
  if ($('html').attr('id') === 'ie6') {
    $('#access ul > li').on('mouseover', function () {
      $(this).find('ul').show();
    }).on('mouseout', function () {
      $(this).find('ul').hide();
    });
  }
});
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3