-3

What javascript code should I add? I want a certain (short message) to show only to visitors who came from one webpage (url, not whole domain). This should not appear (hidden) to other visitors through any links or search engines.

Thanks

1 Answers1

2

You could check document.referrer for a specific page:

if (document.referrer == "http://www.example.com/somepage") {
    // display message
}
putvande
  • 15,068
  • 3
  • 34
  • 50