how would i select the following in jquery
<ns:text value="my value" />
i have tried selecting it like so: 1:
var x= $('ns:text').attr('value');
return x;
2:
var x= $('text').attr('value');
return x;
but nothing so far... i don't know if it is possible or not but ...
Thanks