How can I create a link that doesn\'t show its information at the bottom left or right (this depends on the link\'s position) when you hovering a hyperlink? Lets say that we
Remove the href="whatever" from the link and open link by calling a function. This completely removes the link preview on the bottom left of the page.
HTML-
JS-
openUrl(url: string): void { window.open(url, '_blank'); }