All Questions
2 questions
4
votes
1
answer
88
views
Should I differentiate object types by calling methods via variables?
I have three JavaScript objects. The first one serves merely as a prototype. The other two are implementation of a specific type.
...
1
vote
1
answer
3k
views
Placing and removing a dynamic tooltip
I'm making a calendar and this is one part of the larger project. This adds a tooltip with more information when a calendar event is clicked. It then disappears after 10 seconds, or earlier if a click ...