I want to loop every text in a div .each(function() - jquery
Posted
by Jean
on Stack Overflow
See other posts from Stack Overflow
or by Jean
Published on 2010-03-25T08:22:18Z
Indexed on
2010/03/25
8:23 UTC
Read the original article
Hit count: 163
jQuery
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
© Stack Overflow or respective owner