最初のクラスを取得して同じテキストをメタディスクリプションに適用しようとしていますが、メタが変数getにロードされていません。誰かがこれを見てデバッグすることはできますか?
ありがとう!
$(document).ready(function() {
// add the class of first to any element to get the meta data to populate
var get = $('.first').html();
var myclone = $('meta[name=description]').attr("content");
$(get).appendTo(myclone);
//alert(get);
});