In may application I use ajax url for examples as:
url: '/Home/wlMulti',
I get this error in Google Chrome:
uncaught typeerror property 'location' of object object global is not a function
Any idea!! Shour I use ~/Home/.. Would appreciate your assistance.
Acutall the problem was with
window.location("/Home/...");
change it to
window.location.href = "/Home/....";