6 ms·
That's impressive. Honestly modern browsers should just start ignoring off-domain :visted styles.
by mikelat 12y ago
That's impressive.
Honestly modern browsers should just start ignoring off-domain :visted styles.
- spb 12y agoThat would break aggregator sites like HN and Reddit (although really they should really be maintaining the visit history themselves, as they do with Reddit Gold users).
- adrr 12y agoYou could to do opt in permissions similar to the permission request for location information or for chrome desktop notifications.
- endianswap 12y agoI tried to use the history tracking that comes with Reddit Gold for about a week and it was virtually useless. After browsing on my phone and two computers only like 1 in 10 of the links would correctly show up as purple on the other devices (even just PC to PC it didn't work). Edit: I should mention I bought Reddit Gold just for this feature, so I was optimistic that it'd work.
- tokenizerrr 12y agoAs an alternative, you can set reddit to hide links that you have voted upon which does not require a reddit gold account.
- mschuster91 12y ago> although really they should really be maintaining the visit history themselves, as they do with Reddit Gold users Another HTTP request between me and the content I want. Another 1s of RTT (UMTS link)... No.
- DavidSJ 12y agoThis can be done in parallel with JS, without using an HTTP redirect.
- mschuster91 12y agoNope, if you fire the AJAX request directly on the onclick event, chances are high it will not be submitted/processed before the browser navigates away...
- gohrt 12y agoThere has to be a better way to indicate :visited, using browser chrome. Perhaps only showing the visited info on mouseover (as a cursor style), or limiting it to cases where the style is a color-change that is not nearly the same as the background color, in a DOM element that is front-most z-index... (but this probably can't be computed reliably...) or just defaulting to disabling, until the user approves the domain or path (NoScript-esque)