Is there a general event that fires every time we navigate to a different URL?
window.App =
  Models: {}
  Collections: {}
  Views: {}
  Routers: {}
  init: ->
    # Initialize Routers
    new App.Routers.Main()
    # Initialize History
    Backbone.history.start(pushState: true)
    # BIND VIEW CHANGE?
    $(@).on 'changeOfRoute', -> 
      console.log "Different Page" 
$(document).ready ->
  App.init()
Doing this per view is possible, but I'm looking for a general solution.
 
     
     
     
     
     
     
    