react-native-html-parser icon indicating copy to clipboard operation
react-native-html-parser copied to clipboard

Query all images

Open i25878427 opened this issue 6 years ago • 1 comments

Hey,

How do I query more than one element? I would like to query all the images

Thanks,

i25878427 avatar Nov 01 '18 22:11 i25878427

Hi,

You can try something like this :

          var doc = new DOMParser().parseFromString(html);
          var img = doc.getElementsByTagName('img').toString();

maxgfr avatar Jan 04 '19 14:01 maxgfr