Is it possible to use jQuery to read meta tags. If so do you know what the basic structure of the code will be, or have links to any tutorials.
|
Just use something like:
|
|||
|
|
|
Would this parser help you? https://github.com/fiann/jquery.ogp It parses meta OG data to JSon, so you can just use the data directly. If you prefer, you can read/write them directly using JQuery, of course. For example:
Note the single-quotes around the attribute values; this prevents parse errors in jQuery. This is the same reply I gave here: jquery extract <meta property="og:url" |
||||
|
Should give you back an array of elements whose tag name is META and then you can iterate over the collection to pick out whatever attributes of the elements you are interested in. |
|||
|
|
|
try this plugin http://code.google.com/p/wt-plugins/wiki/wtMeta |
|||
|
|
|
I just tried this, and this could be a jQuery version-specific error, but
resulted in the following syntax error for me:
Apparently it doesn't like the colon. I was able to fix it by using double and single quotes like this:
(jQuery version 1.8.3 -- sorry, I would have made this a comment to @Danilo, but it won't let me comment yet) |
|||
|
|