I have a click handler for a specific link, inside that I want to do something similar to the following:
window.location = url
I need this
Microsoft IE does not support a name as second argument.
window.open('url', 'window name', 'window settings');
Problem is window name
. This will work:
window.open('url', '', 'window settings')
Microsoft only allows the following arguments, If using that argument at all:
Check this Microsoft site