How do you select element with namespace with jQuery > 3.0.0 ?
It looks like jQuery selecting a selector with namespaced element doesn't work anymore. (Or I don't use it correctly)
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml" xml:base="https://portal.foo.fr/sites/foo/_api/">
<entry>
<content type="application/xml">
<m:properties>
<d:Title>titre</d:Title>
- $("Title") => OK 1 item
- $("d\\:Title") => KO 0 item
- $("d\\\:Title") => KO 0 item
- $("properties Title") => KO 0 item
- $("content Title") => OK 1 item
- $("content properties Title") => KO 0 item
It looks like protection with \ doesn't work at all. OK I'll be more than happy if I can ignore the namespace. But this doesn't work either. "grandfather child" works. But not "father child" or "grandfather father child"