私の jQuery 関数は HTML をロードしますが、その HTML は別の関数 (flowplayer から) から別の jQuery セレクターをロードしません
flowplayer("player", {src: "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", cachebusting: true, wmode: "transparent"});
$('#options li a').click( function (evt){
evt.preventDefault();
$('#options li').removeClass('current');
$(this).parent('li').addClass('current');
var rackVideo = $(this).attr('href'); //JQUERY PULLS INFO FROM LINK
var rackOutput =
'<a href="http://c3426439.r39.cf0.rackcdn.com/pritchett/'+ rackVideo +'" id="player" style="display:block;width:348x;height:216px; display:block;">'+
'<img src="http://www.p2ortho.com/wp-content/uploads/2010/10/intro-thumb.jpg" alt="Introduction Video" title="Introduction Video" width="348" height="216" class="alignnone size-full wp-image-620" />'+
'</a>';
$('#slidedata').html(rackOutput);
});
出力である html の id="player" は、flowplayer 関数を呼び出すことを想定しており、機能していません。私は何を間違っていますか?どうもありがとう。