> How do I apply a regex function on that text?
>     ..........
>     textExtractionCustom: {
>         1: function(o) {
>             return $('span',o).val();
>             },
>         2: function(o) {
>             return $('span',o).val();
>             }
>     },

Do you want the text of the element?

$('span', o).text()

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

Reply via email to