div内にツイートが埋め込まれているとします。
<div id="tweet">
<blockquote class="twitter-tweet"><p>A lion would never cheat on his wife. But a Tiger Wood.</p>— Puns (@omgthatspunny) <a href="https://twitter.com/omgthatspunny/status/301482080490115072">February 13, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div id="tweet-insert"></div>
そして、ツイートをコピーして別のdivに挿入したいと思います。
var tweetHtml = $("#tweet").html();
$("#tweet-insert").html(tweetHtml);
これがフィドルです。
これは機能せず、私を作ります:(
修正に関するアイデアはありますか?