tags:

views:

23

answers:

1

How to refresh the page using Ajax? I mean pure Ajax, without any libraries used

+3  A: 

You don't need Ajax -- just vanilla javascript will do:

location.reload();

http://www.netlobo.com/javascript_location_reload.html

Christian Mann