Can anyone tell me if it's possible with jQuery to use a data-link-title instead of a class or an ID?
I have the following code here but instead of the class ".child" i would like to use the given data-link-title "Sound Packs" inside of the html.
$(document).ready(function() {$('.child').attr('href','https://stackoverflow.com/');});
The html looks like this:
<a data-link-title="Sound Packs" class="child">Sound Packs</a>