I made a website, it has: a player and a chatbox; thing is i dont want the entire web page to refresh, because that would result in the player being refresh aswell... can anyone help?
Is there a way to get a specific section of a web page to refresh?
Collapse
X
-
that is where AJAX comes in ... by using a XMLHttpRequest you might call a serverside script to retrieve some content which then could be processed with JavaScript at the client and thus that response could be used to update different parts of a webpage by using DOM methods etc. ... you might have a look here for a start. -
Comment