Is it possible to use jQuery to read meta tags

Just use something like:

var author = $('meta[name=author]').attr('content');

or this as well

var author = $('meta[name=author]').prop('content');

Leave a Comment