Connecting Tech Pros Worldwide Forums | Help | Site Map

Add meta tag

J1C
Guest
 
Posts: n/a
#1: Jul 23 '05
How can I programatically add meta tags with javascript?


Martin Honnen
Guest
 
Posts: n/a
#2: Jul 23 '05

re: Add meta tag




J1C wrote:
[color=blue]
> How can I programatically add meta tags with javascript?[/color]

The same way you create and add other elements, with the W3C DOM:
var meta;
if (document.createElement &&
(meta = document.createElement('meta'))) {
// set properties
meta.name = "God";
meta.content = "Kibo";

// now add the meta element to the head
document.getElementsByTagName('head').item(0).appe ndChild(meta);
}

See also
<http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-37041454>


--

Martin Honnen
http://JavaScript.FAQTs.com/
Grant Wagner
Guest
 
Posts: n/a
#3: Jul 23 '05

re: Add meta tag


"J1C" <just1coder@yahoo.ca> wrote in message
news:1116251622.895823.132270@g44g2000cwa.googlegr oups.com...[color=blue]
> How can I programatically add meta tags with javascript?[/color]

In browsers that support it:

var meta = document.createElement('meta');
meta.name = 'author';
meta.content = 'Your Name';
document.getElementsByTagName('head')[0].appendChild(meta);

However, since the META tag data is mostly for the benefit of search
engines, what does appending a META tag after the page is loaded buy
you? For example, the following doesn't work in IE:

var meta = document.createElement('meta');
meta.setAttribute('http-equiv', 'imagetoolbar');
meta.setAttribute('content', 'no');
document.getElementsByTagName('head')[0].appendChild(meta);

Even though <META HTTP-EQUIV="imagetoolbar" CONTENT="no"> does suppress
the image toolbar.

--
Grant Wagner <gwagner@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq


J1C
Guest
 
Posts: n/a
#4: Jul 23 '05

re: Add meta tag


great - thanks!

Closed Thread


Similar JavaScript / Ajax / DHTML bytes