I need a bit of help getting the values from these HTML elements with jQuery;
<ul class='post-meta'>
<li><span class='post-meta-key'>uniqueidA:</span> value1</li>
<li><span class='post-meta-key'>uniqueidB:</span> value2</li>
</ul>
These are dynamic values and I need to say get ‘value1’ from ‘uniqueidA’ and ‘value2’ from ‘uniqueidB’
See it on jSFiddle: http://jsfiddle.net/jay2S/
If you need the values without any whitespace you can use jQuery.trim()
There may be more factors in your particular situation, but this is a quick and dirty way to get it done.