I have html tag like this:
<img src="/someLink" class="class" alt="some info "quoted info", some info" />
I need to select this tag by 'alt' value by the means of jsoup.
I've tried these options:
img[alt="some info "quoted info", some info"]
img[alt="some info \"quoted info\", some info"]
Nothing worked.
Please explain - how to properly select some element by parameter that includes quotation marks ?
Thank you.