var div = document.createElement('div');
div.innerHTML = htmlString
var obj = {};
obj.doctors = div.getElementById('doctors');
Is there a sensible way to find an ID within an element which is not yet attached to the DOM? Don't want to use JQuery here.