Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
OKBusinessGroup@
http://twitter.com/OKBusinessGroup
Why do Iranian forex traders use this site so much?
Why do Iranian forex traders use this site so much? I have had 150 forex traders from IRAN register in the last 4 days http://www.forex-hunt.com/ and i can't understand why.
I'm not complaining I just can't see why it appeals to Iranians mainly
3 AnswersOther - Business & Finance1 decade agoXML Datafeed Help - Almost there...just need a hand!?
Hi I have an xml datafeed from http://xmlfeed.laterooms.com/index.aspx?aid=4066&r...
I have made a local xml copy http://www.cytravel.co.uk/test/html/england.xml
And currently the page displays ok here http://www.cytravel.co.uk/test/html/cheap_hotels_i...
What I actually want to do is make all the "region_descriptions" linkable using the url next to them so "Central and South England" should jst be clickable through to http://www.laterooms.com/en/p4066/r242_hotels-in-c... and the same for each region (preferably with an alt tag that states "click here for cheap hotels in (region_description)
The code I am currently using is below...please can someone help me as it is driving me nuts!!
TIA
<script type="text/javascript">
var xmlDoc;
if (window.XMLHttpRequest)
{
xmlDoc=new window.XMLHttpRequest();
xmlDoc.open("GET","england.xml",false);
xmlDoc.send("");
xmlDoc=xmlDoc.responseXML;
}
// IE 5 and IE 6
else if (ActiveXObject("Microsoft.XMLDOM"))
{
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async=false;
xmlDoc.load("england.xml");
}
document.write("<table border='1'>");
var x=xmlDoc.getElementsByTagName("region");
for (i=0;i<x.length;i++)
{
document.write("<tr><td>");
document.write(x[i].getElementsByTagName("region_description")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("region_url")[0].childNodes[0].nodeValue);
document.write("</td></tr>");
}
document.write("</table>");
</script>
1 AnswerProgramming & Design1 decade ago