vote up 0 vote down star

has anyone else seen this error message. a quick check with google doesn't show me much.

flag

Give us a sample of the code that produces this problem - I bet jessegavin is onto something... – Jason Bunting Sep 17 '08 at 16:28

4 Answers

vote up 2 vote down

You are probably trying to do something like this....

alert($("#myElement").tagName);

You should do this...

alert($("#myElement")[0].tagName);
link|flag
alert( $("#myElement").get(0).tagName ) would possibly be the preferred syntax for your example. – Kent Fredric Sep 17 '08 at 16:35
The [jQuery docs](docs.jquery.com/Core/get#index) say: "This function called as $(this).get(0) is the equivalent of using square bracket notation on the jQuery object itself like $(this)[0]." – jessegavin Sep 18 '08 at 14:48
vote up 1 vote down

Ensure that you're running your script AFTER the page has rendered. If your script is at the top of the page and runs right away, and your DIV is below that script the DIV doesn't exist yet.

link|flag
vote up 0 vote down

Could you give us an example code snippet that produces this error?

link|flag
vote up 0 vote down check

sorry this was a sort of half-assed question, on my part. i'm going through my .js files and eliminating entire blocks of code now. i've isolated it to one particular .js file.

thanks all the same for reading through this question and replying.

link|flag

Your Answer

Get an OpenID
or

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