Search code examples
javascriptfacebookrefreshreload

how to reload/refresh a page on event in javascript in facebook?


I am having this problem :

Whenever, some specific button is clicked my javascript function runs and does something. I want the function to refresh/reload the page as well.

I dont know how to do this.

Can anyone help, please ?

Thanks.

ahsan


Solution

  • Try:

    document.setLocation('url');
    

    This should help.