I want to loop every text in a div .each(function() - jquery
- by Jean
Hello,
I want to do a loop, in #from and append it to #here
$('#from').match(/http:\/\/\S+/).each(function(){;
var t = $(this).text();
$(t).appendTo('#here');
});
There seems to be an error .
Thanks
Jean