window.addEventListener('DOMContentLoaded', function() {
document.querySelector('.wmlinkrul').onclick = function() {
alert('Спасибо!');
};
};
или
window.addEventListener('DOMContentLoaded', function() {
document.querySelector('.wmlinkrul').onclick = alert.bind(this, 'Спасибо!');
};