I am making the phonegap android application in html,javascript and jquery.I have made the link bold and visited link normal font.But when the run the application again or when the page is refreshed, i need to get the visited link in the same normal font.Please guide me.Thanks in Advance.
I am making the phonegap android application in html,javascript and jquery.I have made the
Share
Use the :visited selector in CSS to style visited links:
a:visited{
font-weight:normal !important;
}
http://www.w3schools.com/css/css_link.asp
edit: I added
!important. It overrides the default user style sheet in case that’s the problem.