This is a follow-up to this question: Using javascript:function syntax versus jQuery selector to make Ajax calls
How would I select this fragment?
<div data-id="54" data-action="follow-global-id" class="add-to-list">here is my answer</div>
I have the id value below and tried this
$('.add-to-list[data-action|="action-follow-global-id"][data-id|=id]').text('here is the things jtjt in the id value');
but no dice. Need to be AND’ing these together.
thx for help
Didn’t test it, but should work: