Based on the below link as an example:
...if a link tag contains the class "add-selected", I want jquery to add an href called "#scrollTo" to all corresponding 's.
<a class="add-selected btn btn-default" href="#">
<span class=" ion-plus-circled"></span>Add Selected
</a>
Final result after page loads should be:
<a class="add-selected btn btn-default" href="#scroll">
<span class=" ion-plus-circled"></span>Add Selected
</a>