I am using a video carousel to browse through videos and would like the current video to auto play.
All the videos are defaulted to "autoplay=false". What I am looking for is; if the class="current" then "autoplay=true"
<li class="NOT-current">
<object data="http://view.vzaar.com/12345" type="application/x-shockwave-flash">
<param value="showplaybutton=rollover&border=none&autoplay=flase" />
</object>
</li>
<li class="current">
<object data="http://view.vzaar.com/12345" type="application/x-shockwave-flash">
<param value="showplaybutton=rollover&border=none&autoplay=TRUE" />
</object>
</li>
<li class="NOT-current">
<object data="http://view.vzaar.com/12345" type="application/x-shockwave-flash">
<param value="showplaybutton=rollover&border=none&autoplay=false" />
</object>
</li>
I know there must be a very simple line of js to change this, maybe using find and replace, but I cant figure it out
