I'm trying to change an object's parameter when the user clicks a link on the site which would reference another video.
HTML
<object id="myExperience8675309" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF" />
<param name="width" value="480" />
<param name="height" value="270" />
<param name="playerID" value="123456789" />
<param name="playerKey" value="abcdefghijklmnop" />
<param name="isVid" value="true" />
<param name="isUI" value="true" />
<param name="dynamicStreaming" value="true" />
<param name="@videoPlayer" value="8675309" />
</object>
I'm not sure how to access the parameters of the object via an onClick function. I want to change the @videoPlayer value. Suggestions?