Bonjour,
Je souhaite donc modifier une icone après qu'elle ait été cliquée.
Cette icone est affichée via la balise <i> comme expliqué ici : https://fortawesome.github.io/Font-Awesome/examples/.
J'ai essayé de différentes manières et voici le code que j'ai actuellement :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 <table id='MP_add' class="table table-data"> <thead> <tr class='TableTitle1'> <td>MP</td> <td colspan='2'>MP number</td> </tr> </thead> <tbody> <tr class='Normal'> <td width='45%'>test</td> <td width='45%'>test</td> <td width='10%'> <a href='#' class='btn btn-success' href='' style='cursor: pointer;' onclick=''> <i class='fa fa-lg' ></i> </a> </td> </tr> <tr class='Normal'> <td width='45%'>test</td> <td width='45%'>test</td> <td width='10%'> <a href='#' class='btn btn-success' href='' style='cursor: pointer;' onclick=''> <i class='fa fa-lg' ></i> </a> </td> </tr> <tr class='Normal'> <td width='45%'>test</td> <td width='45%'>test</td> <td width='10%'> <a href='#' class='btn btn-success' href='' style='cursor: pointer;' onclick=''> <i class='fa fa-lg' ></i> </a> </td> </tr> </tbody> </table>
Et le js :
Merci pour toute l'aide que vous pourrez m'apporter.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 $('#MP_add').on('click', 'tbody .btn', function(e){ $this = $(this); $this.closest("tr").toggleClass("active"); $this.next("i").innerhtml(""); });
Partager