Hello,
Im able to get the list of all spans having the attribute dir='somevalue', with the following jquery statement
$("span[dir='somevalue']")
I want the text of each span i.e. for example, <span dir='somevalue'> text </span>
, i need the value 'text', and i want this for every span returned by the previous statement.
Any way to do this using Jquery ?
Thank You