I have an image and on it are logos (it’s a map), I want to have a little box popup with information about that logo’s location when the user moves their mouse over said logo.
Can I do this without using a javascript framework and if so, are there any small libraries/scripts that will let me do such a thing?
Yes, you can do this without Javascript. Use an HTML image map, with title attributes, like this:
The Stack Overflow logo refers to the image map, which defines a rectangle for each of the two words using an
areatag. Eachareatag’stitleelement specifies the text that browsers generally show as a tooltip. Theshapeattribute can also specify a circle or polygon.