I don't know if it's possible but I want to find elements according to their attribute name prefix. The attribute goes like this:
<div attName:someOtherValue="12"> </div>
It doesn't have to be necessarily on divs but it does follow the above pattern.
Update
Ok, I forgot 2 important points regarding what I'm trying to accomlish: 1. I can't use jQuery so I'll be using only native JS. 2. 2. The par AFTER the colon changes so When I say I need to find according to an attribute prefix I CAN'T use the part after the colon but only the part before the colon (or including the colon)