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.
开发者_如何学GoCan anyone help, please ?
Thanks.
ahsan
Try:
document.setLocation('url');
This should help.
精彩评论