views:

269

answers:

1

I have a href tag <a href="#somepage" target="sometarget"> or more accurately loading a URL from Flash loadURL('#somepage', 'sometarget'). I have no option to remove the target so am limited to (I assume) the available targets: _top, _self, _blank, _parent.

What target or alternative do I have to avoid refreshing the page?

+1  A: 

target="_self" is the default. It is the same as having no target at all.

Justin