Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with CMS i'can't edit source of . can i add any in through javascript?

Edit:

For example I want to add this

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

just above <title>

share|improve this question
5  
This doesn't make sence... The head is parsed prior to the execution of javascript. Adding meta stuf to the head via javascript would not have the desired effect. – Andre Haverdings Dec 14 '09 at 13:32
2  
Eugh. Get a real CMS. Attempting to hack around the limitations of this one is just going to be layer upon layer of pain. – Quentin Dec 14 '09 at 14:21
the man with all the questions :) – Mickel Dec 14 '09 at 14:39
@Mickel - yes. answers of all questions helps me – Jitendra Vyas Dec 14 '09 at 15:09
While not related to the CMS question, it can make sense to add meta tags in certain circumstances. There are various browser addons and javascript injections that use data that is in the meta tags to gather information. Facebook's OpenGraph is one example. Injecting meta tags into the head is needed when you don't have direct access to the originating HTML, whether by fault of a CMS or because you are writing a javascript addon/injection yourself. – conceptDawg Jan 31 '11 at 23:07

3 Answers

up vote 47 down vote accepted

You can select it and add to it as normal:

$('head').append('<link />');
share|improve this answer
+1 will try this – Jitendra Vyas Dec 14 '09 at 13:20
how can i control order , where this link will be placed – Jitendra Vyas Dec 14 '09 at 13:20
6  
Read the documentation: docs.jquery.com/Manipulation insertBefore, insertAfter is what you want. – nickf Dec 14 '09 at 13:21
I have put this in document.ready, but it doesn't append to my head contents – serpent403 May 2 '12 at 11:00
It is adding link, but link not showing in page's view Source... I can view it from browser development tools like Firebug. Can I view link in view source also? – Pankaj Tiwari Jun 27 '12 at 10:53
show 1 more comment

JavaScript:

document.getElementsByTagName('head')[0].appendChild( ... );

Make DOM element like so:

link=document.createElement('link');
link.href='href';
link.rel='rel';

document.getElementsByTagName('head')[0].appendChild(link);
share|improve this answer
7  
+1 for plain JavaScript! :D – GarciaWebDev Jul 26 '12 at 18:16

jQuery

$('head').append( ... );

JavaScript:

document.getElementsByTagName('head')[0].appendChild( ... );
share|improve this answer
2  
dosen't appendChild require a DOM-element? ie. var elem = document.createElement() document.getElementsByTagName('head')[0].appendChild( elem ); – fredrik Dec 14 '09 at 13:23
well yes. i just left that part as ... because i didn't feel that was a central part of the question, and also, at the time of writing, there was no hands-on example as to what he wanted to put in head. but yes, it does need to be a DOM-element. – David Hedlund Dec 14 '09 at 13:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.