Can't click on Map Quiz #2

Submitted by anyayaya on August 11, 2025
I recently made a few quizzes of this mode (where you click on the map), but today I made one in the same way as the other ones, and I couldn't click on anything. What's weird is that I used the same SVG in the original Map Quiz mode (where there's a list for you to click), and everything worked out perfectly. I can click around on the map without any problems.

Any idea what might cause this problem specifically in the Map Quiz #2 mode? I really prefer this mode because I don't need to search for answers in a tedious list, clicking on maps is more satisfying!

11 Comments
+5
Level 82
Aug 11, 2025
I had the same problem a few weeks ago: check if the paths have the "transform" attribute and delete it. For some reasons, this completely breaks the svg in JP.

Also, in the attribute "class" do not use "class1 class2 class3", use "country border ".

+1
Level 30
Aug 11, 2025
I don't have either of those attributes tho, just "d", "id", and "style"
+2
Level 82
Aug 11, 2025
try adding for each path the attribute "class" with "country border country_name".

for example, with a path with id= france you should have class = country border france

+2
Level 30
Aug 11, 2025
Thank you for your advice, but it still didn't work after adding class attributes to all the paths
+2
Level 16
Aug 11, 2025
Maybe check to see all of your paths aren't all nested together (go to layers, ctrl + shift + L I think) and if they're all inside a group there try taking all the paths out.
+1
Level 30
Aug 11, 2025
They aren't in a group, and ctrl + shift + L doesn't seem to do anything😢
+2
Level 78
Aug 11, 2025
I've made a number of these Click Map quizzes, so I've had to debug them a number of times. If you don't mind, you can collaborate the quiz with me and I'll download your SVG and see if I can notice anything that might be causing the issue.
+1
Level 30
Aug 12, 2025
That'd be very helpful! I've unlocked the quiz
+2
Level 78
Aug 12, 2025
Hi. Everything looked fine, there were no issues. I think the only problem was that you had the path ids set as just numbers. I'm not knowledgeable enough to know why that creates an issue, but changing them to their names listed in each class fixed the issue. (This worked since you can either use a path's class or id)
+1
Level 30
Aug 12, 2025
Thank you so much! I've never understood the use of class, now I get it
+2
Level 1
Sep 7, 2025
So I had the same problem and all I did to solve was, copy and paste all the paths. I already had them all set up with the name that I needed so, to keep the names, before I paste them again, i deleted the originals. The transform attribute was gone, and my quiz was fixed =)