Im trying to figure out a way to have the div to the left of the video show different information everytime the user clicks on the number below the video box. The problem is that the numbers below the video already have a function assigned to them to change the source of the video.
Can you just add that functionality to the existing functions? Are you using jQuery?
__________________ ^_^
If anyone knows of a website that can offer ColdFusion help that isn't controlled by neurotic, pedantic jerks* (stackoverflow.com), please PM me with a link.
* The neurotic, pedantic jerks are not the owners; just the people who are in control of the "popularity contest".
onclick can execute a number of things. Call a function to change the div. Also suggest you add an ID to the div. If the ID were target the number one button could do this:
Code:
<li><a href="#" onClick="document.getElementById('target').innerHTML = 'A differt story'; addDynamicSource('DemoReel_Plisko'); return false;">1</a></li>