views:

195

answers:

4

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

+2  A: 

target="new" ins't valid HTML

Use target="_blank" instead.

Justin Niessner
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
A: 

I presume you're talking about an anchor tag, so make that target="_blank"

Robusto
No both of the above solutions doesnt work!
Abhishek
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
+4  A: 
target="_blank"
Kevin
A: 

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

Sunny