I have a list of javascript string with HTML tags and want to split the tags.
<img class="logo" src="http://i.imgur.com/z38lrml.png" height="60px" />
<section id = "test">
I tried to split by double quotes (") but getting only
class=", logo"
I want to split in the following array
[class="logo"], [src="http://i.imgur.com/z38lrml.png"],[height="60px"]
and so on for the next line.
Is there anyway to separate?
Thank you
[class="logo"]is not a valid array.