How would I keep music playing on a website as a user navigates it? -


not wanna anytime wanna know how it's done. when website has music, stops playing after navigate page on site, , starts playing again when page loads.

how keep music playing if user clicks on link? don't wanna put website on frame.

and also, if open new tab of website how stop song replaying on tab if they're playing it?

method 1:

  • a flash website.

method 2:

  • frames (1 frame player, other navigable site)

method 3:

  • the future

method 4:

  • everything on single page, content loaded ajax...possible, not cool seo @ mo

as far active browser tab using jquery can check using window.focus & window.blur events:

$(window).focus(function() {     //dothisandthat; });  $(window).blur(function() {     //dothatandthis; }); 

Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -