I am trying to move lines from name attributes to src of each img. I am using jQuery for this:
$("#one").find("img").attr("src",$(this).attr("name");
Now the problem is that $ (this) is not the current managed item. So, how do I get the current element found by find ()?
Lahey source share