diff --git a/docs/4.0/components/scrollspy.md b/docs/4.0/components/scrollspy.md index 32a86d839ff7..b7f9e994fd57 100644 --- a/docs/4.0/components/scrollspy.md +++ b/docs/4.0/components/scrollspy.md @@ -316,13 +316,13 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap activate.bs.scrollspy - This event fires whenever a new item becomes activated by the scrollspy. + This event fires on the scroll element whenever a new item becomes activated by the scrollspy. {% highlight js %} -$('#myScrollspy').on('activate.bs.scrollspy', function () { +$('[data-spy="scroll"]').on('activate.bs.scrollspy', function () { // do something… }) {% endhighlight %}