Hello I'm trying to find out if this is possible if so how?
What I need is this link below
<a href='www.example.com' target='_blank'>
to open in a new window as it is
and refresh the page the current link is on when it's clicked.
Thanks
Marshall
2:18 am on Sep 12, 2011 (gmt 0)
Have to admit, I'm not sure if onClick works on a link, but you could try <a href='www.example.com' target='_blank' onClick="javascript:history.go(0)">
And you might have to add a <meta http-equiv="no-cache"> to the page to ensure a cached copy is not loaded.