How to keep audio playing while navigating through pages?



To continue loading audio to play while you are navigating through pages, try the following:

  • Use Ajax to load content
  •  History API’s pushState() can also be used to alter URL without page reload.
  •  History.js should be used for consistent behavior across multiple browsers.

The pushState() has three parameters:

  •  State object For new entry created by pushState()
  •  Title: You can pass a short title
  •  URL: New history entry's URL
Samual Sam
Samual Sam

Learning faster. Every day.


Advertisements