jQuery - append meta to the head with js variable

0 votes
172 views
added Dec 17, 2020 in jQuery by lcjr First Warrant Officer (11,530 points)
$(window).load(function() {
	var imgDesc = $('.qa-q-view-content img').attr('src');
	// console.log(imgDesc); 
	$('head').append('<meta property="og:image" content="' + imgDesc + '">');  
});

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...