Antonio Collins schrieb:
> Hello all,
> 
> Are there any plans to add support for namespace qualified attribute
> selectors?  This would would allow the following code to work with the
> example xhtml doc.
> 
> Script:
> $('[EMAIL PROTECTED]:data-url]');


I think, the correct way to select namespaced elements in CSS is this:

table[my|data-url]

So in jQuery I guess it would be:

$('table[my|@data-url]')

There is another recent thread discussing support for namespaces...


-- Klaus

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to