Add class "active" to link of current page

PHOTO EMBED

Mon Nov 14 2022 10:48:04 GMT+0000 (Coordinated Universal Time)

Saved by @vibema #javascript #jquery

$('nav.topmenu li a').filter(function(){
    return this.href === location.href;
  }).addClass('active');
content_copyCOPY