-2

target="new" is not opening new tab or window of my browser in OpenSocial app!

Maroun
  • 94,125
  • 30
  • 188
  • 241
Abhishek Dhote
  • 1,638
  • 10
  • 41
  • 62

5 Answers5

4
target="_blank"
Kevin
  • 13,153
  • 11
  • 60
  • 87
2

target="new" ins't valid HTML

Use target="_blank" instead.

Justin Niessner
  • 242,243
  • 40
  • 408
  • 536
  • 1
    I 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"

kapa
  • 77,694
  • 21
  • 158
  • 175
Robusto
  • 31,447
  • 8
  • 56
  • 77
  • No both of the above solutions doesnt work! – Abhishek Dhote Mar 19 '10 at 18:29
  • 4
    Then 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

target="_blank" should work
- unless you have a some software running which is preventing a pop up to be opened...

kapa
  • 77,694
  • 21
  • 158
  • 175
Sunny
  • 6,286
  • 2
  • 25
  • 27
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