These are my meta-tags:
<meta property="og:image" content="assets/css/gfx/skold.png"/>
<meta property="og:title" content="Den historie hjemmesiden for Norges Golfforbund"/>
<meta property="og:description" content="Her finner du alle de historie tingene som har skjedd i Norges golfhistorie gjennom tidene" />
<meta property="og:url" content="http://###"/>
<meta property="og:site_name" content="Norges Golfklubb"/>
<meta property="og:type" content="sport"/>
And I am trying to change them dynamic with the following code:
$("meta[property=og:title]").attr("content", result.title);
But I am keep getting Syntax error, unrecognized expression: [property=og:title] in Firebug.
Using the latest version of jQuery. Does anyone know what I am doing wrong?
I think you should escape :
look at the documentation No need of ":".
$("meta[property='og\\title']").attr("content", result.title);
$("meta[name='og:title']").attr('content', 'my new title');
Using "property=" does not work in Chrome
You could give each meta element an ID or Class.
$('#metaelement').attr('content', 'my new meta description');
Make sure your quotes are like this:
$('meta[property="og:description"]').attr('content',"$modified_desc" );
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With