How to redirect to home page in jQuery?
Hi,When I complete an action in jQuery, I redirect user to home page in jQuery using below statement.
location.href='/';
This works fine in localhost. But, when this code is put in online server, it does not work.
I tried "location.href='~/''", but it does not work in localhost also.
How to do this in jQuery?