Skip to content
Advertisement

JQuery with AJAX need to create accordion with multidimensional array

I have an AJAX which returns this array:

JavaScript

Array Preview in Console.Log

In my HTML I have an accordion:

JavaScript

In the AJAX success function, I’m getting the array. I need to append that array in the accordion which should be something like this:

JavaScript

In my AJAX success function I can loop through, but I do not know a way how I can append the div having class “append-ajax-data” to append the accordion (div having “card” class).

Here is my JavaScript from Success function of AJAX.

JavaScript

But this code gives separate accordion for each class, I need to group it by department, I tried a lot can anyone please help.

Advertisement

Answer

The problem is that you are adding the whole card in the foreach loop. Try getting the card declaration outside the loop, and closing after it, then adding it to the container, like this:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement