I have a angular route like /x?stage=list, I want to trap route change event when route is changed to /x?stage=details, I have try bind event "$routeChangeStart", "$routeChangeSuccess", however but they are not triggered when query string change. I understand that angular care about the part "/x" of route, so I think it make sense the route is not considered change when query string change. So my question, in angular how do I trap angular route event when query string change?
Thanks