I'm trying to use hammer js to trigger an ajax call I need it to retrieve the current user id and save in the database.
to do this I have two buttons outside my php foreach loop love and nope.
when we click on love I want to trigger ajax and retrieve the id of this user.
I tried this, I did a lot of research before posting. Thanks in advance
var love = document.getElementById('love');
var hammertime = Hammer(love).on("tap", function(event) {
var id = event.target.id;
alert(id)
});