Reputation: 8858
can be do the multitask on a web page?
Actually I am going to develop a website where user can do many task like store data and share between friends.
In which if he upload the music file, he can listen the music in a light box, but the problem it that while he is listening the music he can't do another work (surfing) on the site.
here is the any way by which the user can listen the musics while doing the other tasks, but I don't want to open the pop-up windows.
Thanks in advance
Upvotes: 0
Views: 407
Reputation: 5662
The best way would be to make a pure AJAX site so the user never leaves the page they are on. If you wanted the music continuous and the user clicked a link, the music would stop and start from the beginning when it hit the new page. By using AJAX everything can happen in the background without leaving the page you are on.
EDIT
These should help you accomplish your goals:
Upvotes: 0
Reputation: 31249
You could work with ajax to get your contents. Take a look at hypem.com There you can listen to music and still browse the page.
Or you could just use Frames.
Upvotes: 1
Reputation: 18491
Use frames (in which the content is in another frame than the music player), or make the complete website navigate using ajax (much like facebook does).
Upvotes: 3