Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am implementing Google's map and markers in my site. Each marker references a page that the user can view. Is it possible to use the visited pages info of the page in JS/jQuery?

The data I get for the markers comes from ajax postbacks. When the data comes back, I plot the markers.

I would like to use a marker of a different color if the underlying page has been visited.

Any suggestions?

If it matters, it is an aspx page.

share|improve this question

1 Answer

You need to save the url of the visited pages in cookie or local storage or database then when making your ajax request assign a different marker image to ones that link to those urls

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.