vote up 2 vote down star

Suppose I have a simple XHTML document that uses a custom namespace for attributes:

<html xmlns="..." custom:xmlns="http://www.example.com/ns">
    ...
    <div class="foo" custom:attr="bla"/>
    ...
</html>

How do I match each element that has a certain custom attribute using jQuery? Using

$("div[custom:attr]")

does not work. (Tried with Firefox only, so far.)

flag

2 Answers

vote up 4 vote down check

JQuery does not support custom namespaces directly, but you can find the divs you are looking for by using filter function.

// find all divs that have custom:attr
$('div').filter(function() { return $(this).attr('custom:attr'); }).each(function() {
  // matched a div with custom::attr
  $(this).html('I was found.');
});
link|flag
I feared something like that. Thanks! – Sebastian Rittau Sep 18 '08 at 11:50
vote up 0 vote down

look here http://pastebin.me/48d233d998b4b

basically its $('div').attr('custom:attr')

link|flag
I clarified my questin: I want to match each element that has a custom attribute, not get the value of the attribute. – Sebastian Rittau Sep 18 '08 at 11:24

Your Answer

Get an OpenID
or

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