Can one use jQuery to clone()
a meta title? Basically I am trying to grab the Meta Tag Title and put it at the end of some words such as "Related Products for...", "Accessories for...". Below doesn't work but is in for example.
ie:
$('document.title').clone().appendTo('#similar, #suggested');
If you're just interested in appending the string, why not just use document.title
?
$('#similar, #suggested').append( document.title );
Example: http://jsfiddle.net/Uyfae/