Last updated on January 31st, 2022 at 12:49 pm

Welcome message to visitors using javascript, this simple script will welcome the visitor who clicks your URL from your referrer.This will pops up a thank you message for Visiting your URL from SOME WEBSITE[probably your friend’s Website or anything]

<script type='text/javascript'>
if (document.referrer != '')
{alert('Thanks for visiting from ' + document.referrer);
}
else
{
	alert('Welcome To My Website, Thanks for visiting.')
}
</script>

Demo

Leave a Reply

Your email address will not be published. Required fields are marked *