vote up 7 vote down star

I'm matching ASP.Net generated elements by ID name, but I have some elements which may render as text boxes or labels depending on the page context. I need to figure out whether the match is to a textbox or label in order to know whether to get the contents by val() or by html().

$("[id$=" + endOfIdToMatch + "]").each(function () {
    //determine whether $(this) is a textbox or label
    //do stuff
});

I found a solution that doesn't work, it just returns "undefined":

$("[id$=" + endOfIdToMatch + "]").each(function () {
    alert($(this).tagName);
});

What am I missing?

flag

4 Answers

vote up 14 vote down check

Just one jQuery too much:

$("[id$=" + endOfIdToMatch + "]").each(function () {
    alert(this.tagName);
});
link|flag
Ohhhhh. I get it now. Good answer! – CMPalmer Dec 4 '08 at 20:37
vote up 5 vote down

I think you should do it like this:

$("...").is("input")

(Or whichever element you're looking for.) Then you don't need each.

Have a look at the documentation for is.

link|flag
vote up 0 vote down

tagName what a nice tip. I would like to suggest also to use tagName.toLowerCase() so values in the actual XHTML or HTML standard are returned

link|flag
vote up 4 vote down

First time I've answered my own question. After a little more experimentation:

$("[id$=" + endOfIdToMatch + "]").each(function () {
   alert($(this).attr(tagName));
});

works!

link|flag
Still one jQuery too much. :-) You have the DOM element already with "this", no need to wrap it again! – Tomalak Dec 4 '08 at 20:26

Your Answer

Get an OpenID
or

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