Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

229
Views
How to get a font awesome icon name when using click event on it?

So, if I do this in my HTML component:

<fa-icon [icon]="faSort" (click)="sort($event)"></fa-icon>

How will I get it's name in my ts component?

sort(event: Event) {???}

I tried doing it like this:

sort(event: Event) {

console.log(event['target']['ownerSVGElement']['classList'][1])

}

But the method above is very inconsistent. Is there a better way of doing this?

Font Awesome Package Link: https://www.npmjs.com/package/@fortawesome/angular-fontawesome

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Assuming you don't really care about anything else that the event value may contain within it.

sort(event : any) {
   console.log("Icon Name: ", event.iconName);
}

<fa-icon [icon]="faSort" (click)="sort({ iconName: 'faSort'})"></fa-icon>

Assuming you still want to capture the actual event itself:

<fa-icon [icon]="faSort" (click)="sort({event: $event, iconName: 'faIcon'})"></fa-icon>

The reason this works is that we allow our sort to accept a type of any, and we are creating a brand new object using the curly braces.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!