Adobe script is overriding the event.preventDefault() | Community
Skip to main content
New Participant
March 4, 2021
Question

Adobe script is overriding the event.preventDefault()

  • March 4, 2021
  • 1 reply
  • 6174 views

Hi,

On anchor tag click function we use event.preventDefault() to prevent the link from opening. This was working fine so far. Recently, we migrated from DTM to Launch and from then the preventDefault method is not working.

In the below sample when we click on the "test page" link it should not change the URL. But it is changing the URL to "#testpage". In the same page please remove the adobe script and run. It won't change the URL.

Sample Page code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <a href="#testpage" onclick="gototest(event)">test page</a>
    <script>
        function gototest(e){
            e.preventDefault();
        }
    </script>
    <script type="text/javascript">_satellite.pageBottom();</script>
</body>
</html>
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

thebenrobb
Employee
March 4, 2021

I recommend you take a look at the Link Delay explainer.

The Click event from the Core extension uses this behavior when it is configured with the link delay option on.  My guess is that you've got a Click Event with link delay turned on, and the selector in that event is selecting this link and doing what link delay is designed to do.  You can turn off the link delay or refine the selector in that click event so that it doesn't trigger on this link.

New Participant
March 11, 2021

Thanks for providing the answer. But, as per our web analytics team, turning off the link delay doesn't fix the problem.