up vote 4 down vote favorite
2
share [g+] share [fb]

I am using jQuery to add some dynamic content to a website.

I am attempting to create a new DOM element on-demand using the following code:

container = $('<div id="myContainer"></div>');

This works perfectly in Firefox and Safari, but Internet Explorer is generating an error. The IE error is: Object doesn't support this property or method

I know that jQuery is loading properly, and have tried both the jQuery and $ syntax.

Any ideas as to what might be causing this?

link|improve this question
feedback

3 Answers

up vote 8 down vote accepted

If you want to add a DOM element, the code needs to be modified a bit:

$('body').append('<div id="myContainer"></div>');
// body can be whatever containing element you want to hold myContainer
$('#myContainer').html('whatever you want inside of myContainer');
link|improve this answer
Still not sure why the original method wasn't working (since the jQuery docs list it), but your method was a perfect alternative. Thanks. – B. Slavin Sep 14 '09 at 17:03
Yep, tested and works for me, too. Thanks, inkedmn! – Dick Lampard Oct 5 '10 at 12:43
feedback

I don't know if it can help but I fixed my problem. Basically IE doesn't want to assign jquery object to an undefined variable.

So what I did is declare this a local variable instead.

Before:

function foo() {
  bar = $('#bar');
}

After:

function foo() {
  var bar = $('#bar');
}
link|improve this answer
1  
Worked for me. you might saved me lots of frustration :) thanks – theosp Jul 25 '10 at 15:41
Perfect, worked for me too. – Roy Jul 26 '10 at 10:32
feedback

I came across a very similar problem yesterday. It seems the Internet Explorer creates a lot of global variables and you run into problems when you try to overwrite them. "container" sounds very generic. Can you try using a different name? I have no testmachine here

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.