if I put a div in the head and display:none, than use javascript to display it, will this work?
Edit:
I have stuff loaded in ajax. And as my ajax changes the "main" portion of the site, I want to change the meta-tags as well.
|
if I put a div in the head and display:none, than use javascript to display it, will this work? Edit: I have stuff loaded in ajax. And as my ajax changes the "main" portion of the site, I want to change the meta-tags as well. |
|||||||||||||||
|
|
This would be pointless because 90% of the time, meta tags are used for search engines. Search engines crawlers don't run JavaScript. Edit So many downvotes and negative comments. This answer was much more relevant 2 years ago when it was answered. Still there are very few meta tags that will affect the broweser when changed during runtime. |
|||||||||||||||
|
|
Yes, you can do that. There are some interesting use cases: Some browsers and plugins parse meta elements and change their behavior for different values. ExamplesSkype: Switch off phone number parser
iPhone: Switch off phone number parser
Google Chrome Frame
Viewport definition for mobile devices
This one can be changed by JavaScript. See: A fix for iPhone viewport scale bug Meta descriptionSome user agents (Opera for example) use the description for bookmarks. You can add personalized content here. Example:
So, it’s not just about search engines. |
|||||||||||||||
|
|
You'd use something like (with jQuery):
But that would be mostly pointless as meta tags are usually only scraped when the document is loaded, usually without executing any JavaScript. |
|||||||||||||||||
|
|
You can change meta with, for example, jQuery calls, like this ones:
I think it does matter for now, since google said that they will index ajax content via |
|||||
|
|
meta-tags are part of the dom and can be accessed and -i guess- changed, but search-engines (the main consumers of meta-tags) won't see the change as the javascript won't be executed. so unless you're changing a meta-tag (refresh comes to mind) which has implications in the browser, this might be of little use? |
|||||||
|
|
It should be possible like this (or use jQuery like
|
|||
|
|
|
Yes, it is possible to add metatags with Javascript. I did in my example http://stackoverflow.com/questions/3604886/android-not-respecting-metatag-removal But, I dont know how to change it other then removing it. Btw, in my example.. when you click the 'ADD' button it adds the tag and the viewport changes respectively but I dont know how to revert it back (remove it, in Android).. I wish there was firebug for Android so I saw what was happening. Firefox does remove the tag. if anybody has any ideas on this please note so in my question. |
|||
|
|
|
simple add and div atribute to each meta tag example
now like normal div change for ex. n click
function change tags with jQuery
|
|||
|
|
|
No, a div is a body element, not a head element EDIT: Then the only thing SEs are going to get is the base HTML, not the ajax modified one. |
||||
|
|