Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I view iCloud.com in my safari top sites, it always always has the same thumbnail.

enter image description here

I'm wondering how I could programmatically do the same for my website.

share|improve this question
Do you mean how the pictures are all recent, relavent, snapshots of the page you are looking at? – rlemon Nov 9 '11 at 21:08
Yes and no. I'm wondering why iCloud has the same thumbnail every single time, even when I visit iCloud from a different computer. – alexy13 Nov 9 '11 at 21:23
1  
@rlemon notice how the one on the right is the iCloud logo and not a snapshot of a page. That is the question, the ability to set the displayed image instead of a page screenshot. – Fosco Nov 9 '11 at 21:24

migrated from programmers.stackexchange.com Nov 10 '11 at 3:21

1 Answer

up vote 6 down vote accepted

Looking at the source code, I see this JavaScript:

    if (window.navigator && window.navigator.loadPurpose === "preview") {
        window.location.href = "https://www.icloud.com/topsites_preview/"
    };
share|improve this answer
+1 Nice find! I was digging through this lightly myself but missed it. – Fosco Nov 10 '11 at 14:26
1  
Has anyone out there actually seen this work for any site besides iCloud? – menns Dec 7 '11 at 17:28
This is missing a ) if anyone isn't seeing it work. if(window.navigator && window.navigator.loadPurpose === "preview") { window.location.href = "https://www.icloud.com/topsites_preview/" }; – gazhay Mar 1 '12 at 15:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.