Hi all!
Sorry for my bad english (if it is bad).
How is on site jango.com made that, when song plays and when we click on a button e.g.Home, or Music..., site changed, but the song still plays, it doesn't stop playing?
(Which program they used to make that!)
Thanks!

Recommended Answers

All 3 Replies

Hi,

I think they must use a iframe to just update the iframe when a new page is clicked on??

I dunno ill have another Google and ill see what i can find..

Thanks,
Marais

... site changed, but the song still plays, it doesn't stop playing?
(Which program they used to make that!)
Thanks!

That's probably just plain frames (not iframes, they're different. Iframes would work, too, though). [ W3schools Frames Tutorial .

<!DOCTYPE html>
<html>
<head><title>Title</title></head>
<body>
<!--Your sound stuff-->
<frameset cols="100%">
   <frame frameborder="0" src="frame_a.html" />
</frameset> 
</body>
</html>

Frame_A could just be what you would have without the music. You'd have to use CSS and then make everything look like it wasn't a frame.

Ok. Thank you very much!
How they made that song play?
I dont see embed code!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.