Given the following code ``` js $(document).on('ajaxSend', someHandler).on('ajaxSuccess', anotherHandler); ``` It produces me `event-scope` error on the second `on` call. But there is no Backbone usage in this code, so error shouldn't appear there
Given the following code
It produces me
event-scopeerror on the secondoncall. But there is no Backbone usage in this code, so error shouldn't appear there