I have the below Javascript function
function readMore(details) {
let dots = document.querySelector(`.notificationCard[data-details="${details}"] .notificationDots`);
}
This works fine in Chrome and Firefox but IE11 is throwing an invalid character error for `. Can someone please tell me what I am doing wrong here.
Thanks