Hi there!
I want to capture a dynamic text inside a meta tag, I can do that in this way
var MyVar = $('meta[name=server]').attr("content");
alert(MyVar);
But if this dynamic text is let say 'Page number one'
I need to use if (i guess) and else.
If the content contains 'Page number one' i would like to 'do something' but if the content is empty (it could be) I want to do 'something else'
Any Ideas?