Can I make different categories of link text on a web page show as "unvisited" after different intervals?
June 21, 2007 5:44 AM Subscribe
With Javascript, CSS or anything else, can I make different categories of link text on the same web page behave differently? Specifically, if I wanted to make a page listing some links I need to visit daily, some I need to visit weekly and some I need to visit monthly -- could I make each category of link text change from "visited" color back to "unvisited" color after the appropriate number of days? Or if this can't be done, how would you solve this need (in a visual way, rather than just "keep a list manually of when you visit each")?
Are you always accessing this page from the same computer?
If so, you could assign a "daily", "weekly", or "monthly" class to each link and set a client-side cookie with Javascript when you click on them, appropriately.
On preview: Yes, RSS would be your ideal solution if it's available.
posted by jozxyqk at 5:55 AM on June 21, 2007
If so, you could assign a "daily", "weekly", or "monthly" class to each link and set a client-side cookie with Javascript when you click on them, appropriately.
On preview: Yes, RSS would be your ideal solution if it's available.
posted by jozxyqk at 5:55 AM on June 21, 2007
You can't do this in-browser. Visitedness is a universal cutoff date.
You can send your browser through some portal that updates the page with a kind of "last clicked here" marker.
posted by cmiller at 5:58 AM on June 21, 2007
You can send your browser through some portal that updates the page with a kind of "last clicked here" marker.
posted by cmiller at 5:58 AM on June 21, 2007
Response by poster: Yes, these are mostly pages that change irregularly and don't have rss feeds.
jozxyqk said exactly what I'm looking for -- can anybody tell me how to how to do that, or where I should go to learn how to do that?
posted by lorimer at 6:01 AM on June 21, 2007
jozxyqk said exactly what I'm looking for -- can anybody tell me how to how to do that, or where I should go to learn how to do that?
posted by lorimer at 6:01 AM on June 21, 2007
you could use the Days Since add-on for iGoogle. Probably someone smarter than me can tell you how to incorporate it into your site. Looks like the code is open source.
posted by desjardins at 6:07 AM on June 21, 2007
posted by desjardins at 6:07 AM on June 21, 2007
Instead of changing the color of the link and dealing with classes, it would probably just be a lot easier to just have a last clicked on this link on such-and-such date label after each link.
There are plenty of Javascript tutorials out there; any of them should help you figure out how to do something like that.
Of course, there's no way to guarantee that you actually *got* to that link, without that link reporting something back to you (and then you'll probably have to get fancy with PHP or AJAX or something). With Javascript the best you'll be able to do is track when you clicked on it.
posted by jozxyqk at 6:15 AM on June 21, 2007
There are plenty of Javascript tutorials out there; any of them should help you figure out how to do something like that.
Of course, there's no way to guarantee that you actually *got* to that link, without that link reporting something back to you (and then you'll probably have to get fancy with PHP or AJAX or something). With Javascript the best you'll be able to do is track when you clicked on it.
posted by jozxyqk at 6:15 AM on June 21, 2007
Yeah, it can be done with JavaScript and cookies; capture the clicks, store the dates in a cookie, and use that data to style the links appropriately. Not rocket science, but moderately complicated to code.
Have you considered using a personal organiser app (iCal, Outlook, Google Calendar, etc.) to prompt you to visit these URLs?
posted by malevolent at 9:12 AM on June 21, 2007
Have you considered using a personal organiser app (iCal, Outlook, Google Calendar, etc.) to prompt you to visit these URLs?
posted by malevolent at 9:12 AM on June 21, 2007
Right so the basic outline of doing this in JS would be have the links call some JS function:
...where record_click(foo) somehow encodes foo.href and the current date/time into an alphanumeric string, and then sets that string in a cookie (document.cookie = string) on the current page.
Then you'd have an onload script that walks the DOM for all A elements, extracts their href, checks all the cookies in the current page for one that matches, extracts/decodes the last click time, and computes whether it's before or after the desired cutoff. Based on that decision, add a class to the 'a' element, which you can reference from the stylesheet to set the color.
As a refinement, you could set a class on the links that determines their cutoff time:
In your onload handler, you'd check for the presense of these class values and use that to determine if the cutoff has happened or not.
posted by Rhomboid at 12:37 PM on June 21, 2007
<a href="http://site1.example.com" onclick="javascript:record_click(this);return false">
...where record_click(foo) somehow encodes foo.href and the current date/time into an alphanumeric string, and then sets that string in a cookie (document.cookie = string) on the current page.
Then you'd have an onload script that walks the DOM for all A elements, extracts their href, checks all the cookies in the current page for one that matches, extracts/decodes the last click time, and computes whether it's before or after the desired cutoff. Based on that decision, add a class to the 'a' element, which you can reference from the stylesheet to set the color.
As a refinement, you could set a class on the links that determines their cutoff time:
<a class="oneweek" href="http://site1.example.com" onclick="javascript:record_click(this);return false">
<a class="onemonth" href="http://site2.example.com" onclick="javascript:record_click(this);return false">
In your onload handler, you'd check for the presense of these class values and use that to determine if the cutoff has happened or not.
posted by Rhomboid at 12:37 PM on June 21, 2007
Oh and just in case it wasn't clear, when encoding the cookie values you'd want the format to be asciiurl=datevalue, where asciiurl is a ascii-ified version of the HREF and datevalue is something easily parsed, e.g. unixtime. That way each click on url overwrites the previous value of the cookie; and you can easily scan the part on the LHS of the = for a given URL
posted by Rhomboid at 12:42 PM on June 21, 2007
posted by Rhomboid at 12:42 PM on June 21, 2007
« Older Calling all publishing professionals and authors | How do I make my network play nice? Newer »
This thread is closed to new comments.
Presumably this is something that doesn't have an RSS feed? We need to know why RSS isn't the right answer here. Or are these links for which RSS wouldn't even make sense? (e.g. a bank statement - although, now that I say that, I'd love it if my bank would give me secure RSS of my transactions!).
posted by dmd at 5:54 AM on June 21, 2007