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
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
You could check document.referrer
for a specific page:
if (document.referrer == "http://www.example.com/somepage") {
// display message
}