Fontawesome icon is not changing after toggling its class with jquery. Where am i doing it wrong ? Please help... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Fontawesome icon is not changing after toggling its class with jquery. Where am i doing it wrong ? Please help...

https://code.sololearn.com/WMyhihPhiXF1/?ref=app

12th Feb 2018, 4:15 PM
adonnis sharma
adonnis sharma - avatar
6 Answers
+ 5
Well it's quite easy. Wrap your <i> element in <span> and then replace "button" with "span" for *click* event!
12th Feb 2018, 5:53 PM
777
777 - avatar
+ 3
The mystery of the error was hidden in the *class* attribute <i class="fa fa-eye"></i> here the i is having two classes, not one, "fa" and "fa-eye" seperated by spaces. So, jQuery's toggleClass method will not work After using some JavaScript, I got the error resolved 😉 https://code.sololearn.com/W3jl7B1GWP1Z/?ref=app
12th Feb 2018, 5:32 PM
777
777 - avatar
+ 2
JQuery toggleClass method perfectly works with how many class names you want, each separated by spaces ^^ The error is due to the fontawesome JS library wich dynamically replace the elements defined with specific classes by svg elements sharing attributes of the initial element, so you cannot use the element tag name to select it: you need to select the new svg created element by another way, as a specific id (that's part of the @Blue solution, but you could still use toggleClass): $(function() { $("button").click(function() { $("#icon").toggleClass("fa-eye fa-eye-slash"); }); });
13th Feb 2018, 4:00 AM
visph
visph - avatar
+ 1
that works fine but how can i toggle between icons by clicking on them?
12th Feb 2018, 5:41 PM
adonnis sharma
adonnis sharma - avatar
0
Thanks sir, I really appreciate your help. Now i understand how did you do that.
12th Feb 2018, 5:56 PM
adonnis sharma
adonnis sharma - avatar
0
I know this is an older post, but just in case it helps another!.. The first answer almost worked for me. Create two versions of the the <i> icon you want to display and surround them both in a <span>. Then you can toggle a "d-none" class on the span, switching between the icons you would like to display.
26th Jul 2021, 1:11 PM
Chris Tregaskis
Chris Tregaskis - avatar