I am creating a badge for my website.
UPDATE and CHANGE the question body
I'm trying to send the URL of the page that contain my badge back to my site when someone clicks the badge.
I am creating a badge for my website.
UPDATE and CHANGE the question body
I'm trying to send the URL of the page that contain my badge back to my site when someone clicks the badge.
You can get the referrer with document.referrer
, but bear in mind this may not be set. Proxies often send a different one or strip it, and I don't think you can check X_FORWARDED_FOR
in JavaScript.
Try this:
<script>
alert(document.URL);
</script>
Mozilla Dev Center is really good and complete -- a great resource. You can find it here.