How to select whole link after click on this?
And later use document.getSelection();
My code doesn't work:
$('a').on('click', function(event) {
event.preventDefault();
$(this).select();
//document.getElementByTagName('a').select(); // Doesn't work too
return false;
});