react-native-html-parser
react-native-html-parser copied to clipboard
Query all images
Hey,
How do I query more than one element? I would like to query all the images
Thanks,
Hi,
You can try something like this :
var doc = new DOMParser().parseFromString(html);
var img = doc.getElementsByTagName('img').toString();