UK Daily Mail sucks. They don’t allow me to view anything because they pop up one of those “turn off your ad blocker” notices. I have turned it off. It still doesn’t work. Screw ‘em. I’ll have to take your word for what the article says.
Here's a little trick I use on DM.
1. Press F12 to open the Developer's Tools.
2. Click on the Console tab.
3. At the upper right corner of the console, click on the Errors, Warnings, Logs, Info, Debug, CSS, XHR & Requests to turn off everything.
4. Copy the following Javascript snippet into the console then hit the <Enter> key.
The setProperty("display", "none", "important") hides the ad blocker pop-up.
The setProperty("overflow", "auto") restores the vertical scroll bar.
JS:
document.querySelector(".fc-dialog-overlay").style.setProperty("display", "none", "important");
document.querySelector(".fc-dialog-container").style.setProperty("display", "none", "important");
document.querySelector(".fc-ab-root").style.setProperty("display", "none", "important");
document.querySelector("body").style.setProperty("overflow", "auto");