Skip to content Skip to sidebar Skip to footer

Select A Tag With A Selector From A Text Variable Using Jquery

Solution 1:

Solution 2:

Replace

$('a', text).each(function() {

with

$(text, 'a').each(function() {

and see if it works.

Post a Comment for "Select A Tag With A Selector From A Text Variable Using Jquery"