$("a:has(img)").each(function() { $(this).replaceWith($(this).children()); })
Category: link
how to remove https link from javascript
result = url.replace(/(^w+:|^)///, '');
how to regex a link javascript
var urlRegex =/(b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|])/ig;