I'm a beginner with canvas element but my research on Google didn't go well... So, I have my canvas element and I draw a lot of rectangles in my canvas.
Currently, when I click in my shape I'm able to display an alert message like:
'You clicked on the rectangle 54'.
I found a tons of article about a menu on Javascript on html element but nothing about Canvas...
Is there a way to do that?
You'd need to keep track of the coordinates and check whether the mouse is in one of the rectangles.
Example: