-1
Good afternoon!
I wonder how I can change color of visited links on a page using javascript?
-1
Good afternoon!
I wonder how I can change color of visited links on a page using javascript?
2
You can use the bookmark in css itself:
a:visited {
color: pink;
}
Source: https://www.w3schools.com/cssref/sel_visited.asp
Via javascript there is the method of changing the css:
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.