target="new"
is not opening new tab or window of my browser in OpenSocial app!
Asked
Active
Viewed 2,389 times
-2

Maroun
- 94,125
- 30
- 188
- 241

Abhishek Dhote
- 1,638
- 10
- 41
- 62
5 Answers
2
target="new"
ins't valid HTML
Use target="_blank"
instead.

Justin Niessner
- 242,243
- 40
- 408
- 536
-
1I thought `target="new"` would open a new window if one named "new" didn't already exist. But that might be 4.0-era behavior. – Frank Schmitt Mar 19 '10 at 20:01
0
I presume you're talking about an anchor tag, so make that target="_blank"
-
-
4Then show your code. It absolutely *does* work if you're using anchor tags. Everyone here has given you the same answer, so either your question is incomplete or misleading or else we're all just dunces. The over/under is not in your favor on this one. :) – Robusto Mar 19 '10 at 18:51
0
The:
...target="Troy III">
Will open the link in a new TAB instead of a window by default on the following popular browsers: Firefox; Chrome; Opera; but not in IE and Safari

kapa
- 77,694
- 21
- 158
- 175