I used the following jquery to insert a metatag into a html document.

<script type="text/javascript">
if(screen.width>=320 && screen.width<=767){
$('head').append('<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">');}    
</script>

If possible, I'd like to insert the metatag without using jquery. Anyone have any ideas how I can do that?

I believe I will probably need to use document.getElementByTagName but I'm not sure how.

Just in case you are wondering, I am inserting the metatag into my html to to optomize the site for viewing with the iphone. Unfortunately, width=device-width is not an option as it doesn't play well with my ipad version.

link|improve this question

Just out of curiosity, are you sure mobile devices run your Javascript before checking out the Meta tag? – Bart Vangeneugden Oct 10 '11 at 10:31
I've tested it on the ipad and the iphone and it works. Good question though. I'm not sure about any other devices. I will try android later. – moomoochoo Oct 10 '11 at 10:48
1  
Actually, I take that back. I'm finding that the iphone is not consistently detecting the metatag (At least I think that is the problem). Sometimes it works sometimes it doesn't. I think that I will use php instead and just redirect to a mobile specific page. – moomoochoo Oct 11 '11 at 7:50
feedback

2 Answers

up vote 2 down vote accepted
var viewPortTag=document.createElement('meta');
viewPortTag.id="viewport";
viewPortTag.name = "viewport";
viewPortTag.content = "width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;";
document.getElementsByTagName('head')[0].appendChild(viewPortTag);
link|improve this answer
That did the trick. Thanks! – moomoochoo Oct 11 '11 at 4:15
feedback

Javascript solution:

document.getElementsByTagName('head')[0].innerHTML += '<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">';
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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