I use ajax to display number of hits being made on a page, in the first time of loading, the number is retrieved from the DB, in the rest time, I want to get it from another page directly that knows a new hit is being made.
I don't know how to let that page to change the innerHTML in a different page. Normally we do: document.getElementById("someID"); but it is for the current page, what would be the code that specify which page's text field ID to go?
thanks.