79313016

Date: 2024-12-28 00:23:51
Score: 1
Natty:
Report link

Use the next() method:

$('nav .dropdown-toggle').click(function(e) {

$(this).toggleClass('show');
$(this).next('.dropdown-menu').toggleClass('show');

$(this).attr('aria-expanded', function (i, attr) {
   return attr == 'true' ? 'false' : 'true'

});

});

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lordvicus Madin