<meta itemprop="price" content="175.03">
I want to read the content of the meta tag in this case I want the output 175.03 using javascript I have tried the following jquery code but I want to do it using javascript.
var value= $('meta[itemprop="price"]').attr("content");
any help would be appreciated.