Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

133
Views
Disable anchor (a) tag tooltip

I wanted to remove the red circle, it always shows on the bottom of the browser (No jQuery)
example

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Remove the href="whatever" from the link and open the link by calling a function. This completely removes the link preview on the bottom left of the page.

HTML:

<a (click)="openUrl('https://google.com')">

JS:

 openUrl(url: string): void {
    window.open(url, '_blank');
  }
about 4 years ago · Juan Pablo Isaza Report

0

From @Md Atiqur Rahman I added some code and make this:

const a_tags = document.querySelectorAll("a");

books.forEach((element) => {
    const href = element.href;
    element.removeAttribute("href");
    element.addEventListener("click", () => {
        openUrl(href);
    });
});

function openUrl(url) {
    window.open(url);
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!