I’ve got a little problem: I don’t know whether it is possible to select all DOM nodes with some attribute patterns using jQuery.
For example, I need to select all nodes with id attribute set to a string starting with "_dom".
I’ve found something like this:
$("input[name^='news']").val("news here!");
but as far as I can see, this code applies the sample to the <input> nodes only.
Can I use wildcards for the node names?
should do what you need.