HTMLをfancyboxポップアップに読み込もうとしています。IE 8以外のすべてのブラウザーですべてがうまく機能します(他のバージョンのIEはチェックしていません)。ポップアップが開きますが、何も表示されません。
これは私のjsです:
$(".fancyPopup").live('click', function(ev){
ev.preventDefault();
var selectedStrip = '#' + $(this).attr('id');
$(".fancyPopup").live('click', function(ev){
ev.preventDefault();
var selectedStrip = '#' + $(this).attr('id');
$.fancybox(
{
href: '/snapav/mkting/html/rackPowerStripSuggestions.html',
type: 'ajax',
fitToView : false,
afterShow: function(){
hideSeries();
$('.strips:not("' + selectedStrip + '")').hide('slow', function(){
$('ul' + selectedStrip).addClass('flagged');
});
}
});
});
どんな助けでも大歓迎です。