Unable to load the same page again

I want to reload the same page again but its not happening. Suppose I have a screen name as notification. In this screen I have only one button. When I press the button the same notification page need to be loaded again.

//On clicking button
$$(’#my-button’).on(‘click’, function (e) {

        app.views.main.router.navigate('/notification/');
  });

Its not calling at all. No changes in the screen.

app.views.main.router.refreshPage();

Thanks for the reply. Its working now.