jQueryで動的に追加した要素に対してswiper.jsでスライドを実装したいのですが、機能しません。
動的に追加した要素に対しての処理であることが原因と考え、以下のようにswiperのオプションのobserverをtrueとしましたが、それによってTypeErrorとなります。
ご教授お願いいたします。

HTML記述
<div class="detail">
  <ul class="col-image-slide">
    <li>
      <img src="/album/sample.jpg" alt="サンプル">
    </li>
  </ul>
</div>

JS記述
$(document).ready(function() {
  var catalogSwiper = $('.detail').swiper({
    mode:'horizontal',
    loop: true,
    observer: true
  });
});

エラー
TypeError: Argument 1 of MutationObserver.observe is not an object.