You don't need javascript unless you are changing data as the video streams.
- Place your video player in a div
- Make that div position:relative and z-index of 1 in css
- Create a new div inside the video div for your user info
- Position the new div to position:absolute and position it with top/right/bottom/left and also give it a z-index larger than the video player. So z-index:2 or 99999999999
- If the user info is dynamic, as in it changes within the same page or video, then update the user info div with ajax calls. JQuery makes this very easy.
|