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 to actually open the url in a new window though, how do I do this?
|
I have a click handler for a specific link, inside that I want to do something similar to the following:
I need this to actually open the url in a new window though, how do I do this? |
||||
|
|
|
You can like:
jQuery:
You could also set the |
|||||||
|
|
Here's how to force the target inside a click handler:
|
|||||||
|
|
you will need to use references: |
|||
|
|
|
You can also use the jquery prop() method for 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: _blank _media _parent _search _self _top |
|||||
|