Hello all
I am using a datafeed that provides me with a Javascript that spits
out a bunch of hyperlinks to other locations.
Her is what it looks like:
<script language="javas cript"
src=http://datafeed.XXXXXX .com/YYY.asp?area=XX &stories=10&url =www.ABC.com>
</script>
<script language="javas cript">
for (row= 0;row < Docs.length; row++)
{
document.writel n(" <li class=\"style1\ " target=\"_blank \">" +
Docs[row] + " </li> <br>");
}
</script>
This will spit out a bunch of hyperlinks with bullets
* link1
* link2
* link3
The problem is that these links DO NOT pop up a new window. Instead,
they just open in the current window.
Since I do not have access to hyperlink HTML code to insert a
target=_blank tag, I am stuck and can not figure out what to do. I
need each link to pop open in a new window.
Given that I can insert HTML tags insire the document.writel n, is
there anything that I can put there that would solve my problem.
Please advise ASAP.
Thank you in advance
Albert
I am using a datafeed that provides me with a Javascript that spits
out a bunch of hyperlinks to other locations.
Her is what it looks like:
<script language="javas cript"
src=http://datafeed.XXXXXX .com/YYY.asp?area=XX &stories=10&url =www.ABC.com>
</script>
<script language="javas cript">
for (row= 0;row < Docs.length; row++)
{
document.writel n(" <li class=\"style1\ " target=\"_blank \">" +
Docs[row] + " </li> <br>");
}
</script>
This will spit out a bunch of hyperlinks with bullets
* link1
* link2
* link3
The problem is that these links DO NOT pop up a new window. Instead,
they just open in the current window.
Since I do not have access to hyperlink HTML code to insert a
target=_blank tag, I am stuck and can not figure out what to do. I
need each link to pop open in a new window.
Given that I can insert HTML tags insire the document.writel n, is
there anything that I can put there that would solve my problem.
Please advise ASAP.
Thank you in advance
Albert
Comment