Tagged Questions
The visited tag has no wiki summary.
10
votes
4answers
4k views
Google chrome a:visited background image not working
(before I start I should say yes, I have done all the stupidity checks, yes the link is in my history and has been visited etc)
I'm using Chrome version 6.0.472.63, although it's important that this ...
7
votes
2answers
112 views
CSS :link and :visited pseudo-selectors - are web browsers adhering to the spec?
The W3.org CSS specification states the following (emphasis mine):
The :link pseudo-class applies for links that have not yet been visited.
The :visited pseudo-class applies once the link has ...
4
votes
5answers
3k views
a:visited doesn't work in Mozilla Firefox
I have created a link and when I try to set the style;
a:visited {
text-decoration: underline;
color: #FF0000;
}
It doesnt seem to work. It works fine in IE. I have also followed the order; ...
3
votes
2answers
93 views
IE6 CSS Issue on Visited Link
From my investigation, it seems like IE6 considers the following links are the same:
link1: http://www.google.com#/test=1
link2: http://www.google.com#/test=2
Reason being that I have assigned ...
3
votes
3answers
1k views
Jquery: mark links as visited without opening them?
I have no intention of just altering the link (I hear that's impossible, but if it's not I'd love to know how). I'm fine with adding it to the the browser history if that needs to be done.
I'd like ...
3
votes
6answers
4k views
Set visited link color to whatever the color of un-visited link is (P.S. not the usual question)
I need to set the a:visited CSS to whatever color the normal a is set to.
What I want to be able to tell the browser is, for the visited links, use the same color as the unvisited links, whatever ...
3
votes
1answer
3k views
How to check visited link using jquery without using any plugin
How to check visited link using jquery without using any plugin please help to solve this problem
3
votes
3answers
956 views
Altering href with jQuery no longer triggers a:visited style
My SharePoint site needs to preserve the a:visited style defined in CSS for links. I added the following code, which appends "&Source=/" to each href. It seems that by changing the href via ...
2
votes
2answers
51 views
jquery anchor hover visited tabs of images
I am creating a Images tabs with jquery and i am not using any css here..
I am using anchors <a>
When a user hovers on anchor ie focus on <a>, it should fire something but its not working
...
2
votes
2answers
847 views
Detect Visited Link In Chrome
I am using a userscript for Chrome and Firefox and I am checking for links that have been visited by the user. I have
a{
color: blue;
}
a:visited{
color: red !important;
}
in my css ...
2
votes
2answers
806 views
IE7 - visited links revert to unvisted after page refresh
A number of our users have just upgraded from IE6 to IE7. the upgreaded users are reporting an issue with visited links reverting to their unvisited color after a page refresh. This only happens to ...
2
votes
5answers
1k views
After visiting links, Firefox selectively skips state change or a:visited styling
After clicking a link with a common href (local page or web-site)
and the href is successfully loaded, both FF2 and IE7 will display
the link with a:visited styling.
For links with ...
1
vote
1answer
333 views
css change style of an element on click
I have a list of elements, and i want to change a style of an element when one clicks on the list element(and that specific style to stay the same until the user presses another list item).
I tried ...
1
vote
2answers
744 views
Linked Image Border Styles
I want to be able to link my image. Click on it. Go back to the page and see that it was visited.
I want my visited images to have a different color border when I go back.
My code:
a:link ...
1
vote
8answers
311 views
Is it possible to set a style of link that shows only when the linked webpage is being viewed?
I got a problem like this (this is html/css menu):
Eshop | Another eshop | Another eshop
Client wants it work like this:
User comes to website, clicks on Eshop. Eshop changes to red color with red ...
0
votes
5answers
101 views
Change image src for visited link
I have a list with several entries.
<ul>
<li>
<a href="http://url" title="The Title">
<img src="/badge-unvisited.png" alt="" border="0" />
</a>
...
0
votes
0answers
99 views
Visited Link Color
Hello
I had html with CSS and working color change on visited files (I linked videos).
Recently I applied pop-up video player (it has js). Now there is no color change for visited files. Please help ...
0
votes
4answers
640 views
a:visited is not working on mozilla but works fine on IE
I am trying to solve this problem since a while but no luck. Please help.
a:visited function works fine on my IE but not on mozilla. It has no effect on Mozilla. Css class is
ul#menu1 li ...
0
votes
5answers
186 views
html css links visited
my links turn purple sometimes, probably becouse they are visited or something. I want to disable this from css.
How can i do this?
thanks in advance, yours lovely alexander
0
votes
2answers
194 views
last visited link
I have 2 domain names on second domain name I want to check last visited link.
for eg. on 1st domain name contact us link is given when user click on it, it takes him to second domain name. now how ...
0
votes
2answers
135 views
setting a url as visited
I have a
<a href="my_redirect_page.php?link=mylink">my_text</a>
link on my page, and the following line in my_redirect_page.php:
header("Location: ".$mylink);
but after the ...
0
votes
1answer
249 views
Safari's never-ending loading message when an iframe does not have a src
I'm using @rem's jQuery :visited plugin to do something with visited links on a page. The plugin works by creating an invisible iframe, injecting the HTML source, and comparing the colour of links to ...
0
votes
3answers
366 views
Can I use the CSS :visited pseudo class on 'wildcard' links?
Let's say I have a site with multiple links as follows:
www.example.com/product/1
www.example.com/product/2
www.example.com/product/3
I also append tracking info to links from time to time so that ...
0
votes
1answer
179 views
Manage a `visited` links history in browsers
Can I edit the browser's visited links history?
How can I dump full list of visited sites, or list of pages from some site?
I'm interested in the solution for the most popular browsers: IE7-8, ...
0
votes
1answer
88 views
How do I style link menus for filtering like the 'Dean + Friends' 'Just Dean' 'Just Friends' one on Facebook?
Several pages on our e-commerce web app allow users to filter a status list of requests they've submitted to us.
The filters are usually something like:
All Pending Completed
We have them set ...