how to remove img href attribute in jquery code example
Example: how to remove link in image in jquery
$("a:has(img)").each(function() { $(this).replaceWith($(this).children()); })
$("a:has(img)").each(function() { $(this).replaceWith($(this).children()); })