I have a javascript which fires on pageload.
How do I change the code that this javascript only fires on the first pageload?
The script:
<script type="text/javascript">fetch('URL');</script>
The background is that the URL which is fired by the script causes a conversion (should only be triggered once)
Thank you.