0
I always completed a jquery using the command: $('#id_1')
, but always in a html body that has id
. How do I access an html body that does not have id
, using the attribute data-uid
in my case below?
<img data-uid="_b03bc8304532" ui-sref=".image({uidImage:
"_b03bc8304532"})" width="450" height="450">
$("[data-uid=\"_b03bc8304532\"]")
– Valdeir Psr