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>
I'm working with CMS i'can't edit source of . can i add any in through javascript?
For example I want to add this
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
just above <title>
You can select it and add to it as normal:
$('head').append('<link />');
jQuery
$('head').append( ... );
JavaScript:
document.getElementsByTagName('head')[0].appendChild( ... );