You can get the urls as follows:
Firstly, you store the anchors in an array
urls = ["<a class=' text-info' href='description/Q0RFU0NJRDM=/Acetaminophen (Tylenol) Poisoning'/>Acetaminophen (Tylenol) Poisoning<a />",
"<a class=' text-info' href='description/Q0RFU0NJRDQ=/Achalasia'/>Achalasia<a />"];
Now, using map method of array
var _urls = urls.map(function(url){
var div = document.createElement('div');
div.innerHTML = url;
return div.children[0].getAttribute('href');
});
You can iterate over the array and create a temporary div and add the anchor as innerHTML to get an HTML Element and return the href property of the element.
SNIPPET
urls = ["<a class=' text-info' href='description/Q0RFU0NJRDM=/Acetaminophen (Tylenol) Poisoning'/>Acetaminophen (Tylenol) Poisoning<a />",
"<a class=' text-info' href='description/Q0RFU0NJRDQ=/Achalasia'/>Achalasia<a />"];
var _urls = urls.map(function(url){
var div = document.createElement('div');
div.innerHTML = url;
return div.children[0].getAttribute('href');
});
console.log(_urls);