--- id: 5d8a4cfbe6b6180ed9a1ca70 title: Part 144 challengeType: 0 dashedName: part-144 --- # --description-- Add a `mouseover` event to the `tumblr-circles` and `instagram-circles` in the same way that you did for the `twitter-circles`. After that, you will be able hover any of the circles or year labels to get the information for that year. # --hints-- test-text ```js const script = $('.dashboard').siblings('script')[1].innerHTML; assert( script.match( /\.on\(('|"|`)mouseover\1, function \(d\) \{\s*return drawDashboard\(d\.year\);\s*\}\)/g ).length === 3 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```