I would like to change all the names of the attributes where class="testingCase"
throughout all my whole html document.
e.g. Change:
<a class="testingCase" href="#" title="name of testing case">Blabla</a>
<a class="testingCase" href="#" title="name of another testing case">Bloo</a>
To this:
<a class="testingCase" href="#" newTitleName="name of testing case">Blabla</a>
<a class="testingCase" href="#" newTitleName="name of another testing case">Bloo</a>
I was thinking of a find and replace but that seems a lot of code for something so easy. Is there a jQuery function for this or a simple method?
Thank you,
Ice