79642751

Date: 2025-05-28 17:48:10
Score: 1
Natty:
Report link

I got this to work using legacy markers. I target the title attribute rather than aria-label.

const node = document.querySelector('[title="markerName"]');

node.addEventListener("focus",() => {
    //focus in code
});
node.addEventListener("focusout",() => {
    //focus out code
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Colton Testing