I have many href generated dynamically with php, and i need event listener click.
it´s no very much problem, but when i´m traying to do click in one, always returned me, same data.
i have this:
JavaScript
x
45
45
1
$(".qrCode").click(function(e) {
2
e.preventDefault();
3
e.stopPropagation();
4
e.stopImmediatePropagation();
5
6
$.ajax({
7
url: "{{ route('restaurants.qrcodes', $id) }}",
8
type: "GET",
9
success:function(response){
10
console.log(response);
11
},
12
error: function(jqXHR, textStatus, errorThrown){
13
if (jqXHR.status === 0) {
14
15
alert('Not connect: Verify Network.');
16
17
} else if (jqXHR.status == 404) {
18
19
alert('Requested page not found [404]');
20
21
} else if (jqXHR.status == 500) {
22
23
alert('Internal Server Error [500].');
24
25
} else if (textStatus === 'parsererror') {
26
27
alert('Requested JSON parse failed.');
28
29
} else if (textStatus === 'timeout') {
30
31
alert('Time out error.');
32
33
} else if (textStatus === 'abort') {
34
35
alert('Ajax request aborted.');
36
37
} else {
38
39
alert('Uncaught Error: ' + jqXHR.responseText);
40
41
}
42
}
43
});
44
});
45
my html is:
JavaScript
1
4
1
<a data-toggle="tooltip" data-placement="bottom" title="{{trans('lang.restaurant_qrcodes')}}" href="{{ route('restaurants.qrcodes', $id) }}" target="_blank" class='btn btn-link qrCode'>
2
<i class="fa fa-qrcode"></i>
3
</a>
4
update
but i need if i want to do click in href witch id 12 go to id 12, now always go to id 11. I think that i can to do a each
but i don´t know how i can do it.
I need this, for to do, a loader gif while web do operations
Thanks for help
Advertisement
Answer
With method unbind() i get that i can only can select one href that i would like it
Solution:
JavaScript
1
5
1
$(".qrCode").unbind().click(function(event) {
2
event.preventDefault();
3
console.log($(this).attr('href'));
4
});
5