Если можно переписать ссылку и если я правильно понимаю задачу, то
<a href="http://mysyte.ru?key=06302971331678253" class="link" data-id="546374">ссылка</a>
function firstLink(link, e) {
x = e.pageX;
y = e.pageY;
if (!x) {
x = window.event.x;
y = window.event.y;
}
x = x % 100;
if (x < 10)
x += 10;
y = y % 100;
if (y < 10)
y += 10;
return "" + link + x + y;
}
$(document).ready(function(){
$('.link').on('click', function(e){
e.preventDefault();
var _this = $(e.currentTarget);
var $id = firstLink( _this.data('id'), e);
_this.attr('href', _this.attr('href') + $id + "980915&pg=http://site.com/");
setTimeout(function(){
document.location = _this.attr('href');
}, 5000);
return false;
});
});
P.S. Спасибо
@podvzbzdnul за замечание