Administrators Leon Posted August 16, 2012 Administrators Share Posted August 16, 2012 I was doing a bit of work on my blog that is hosted on a OSX server, when i came to the point that needed to import a meta variable in javascript.. so i made this little function... <script> function getMeta(varname) { var metas = document.getElementsByTagName('META'); var i; for (i = 0; i < metas.length; i++) if (metas[i].getAttribute('NAME') == varname) break; var GMresult = metas[i].getAttribute('CONTENT'); return GMresult; } </script> You can test it by doing: <script> var result = getMeta("Content-Type"); alert(result); </script> ... It should popup a javascript alert with the content of Content-Type Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.