Search code examples
htmlstyleshref

a href style How to change link


How to disable or change the display of this link through the style. Help me please.

link href


Solution

  • Do not use an <a> element if you do not want this behaviour. You cannot change it.

    Instead, what you could do is have a <p> that uses the onclick event to send the user to your URL using JavaScript.

    A working code might look like:

    <p onclick="window.location.href='http://www.example.com'">Press here!</p>