<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community - JavaScript / DHTML / AJAX</title>
		<link>http://www.daniweb.com/forums</link>
		<description><![CDATA[Our JS / DHTML / AJAX forum is the place for Q&A-style discussions related to clientside scripting languages (that are executed by a web browser instead of on the server's end). Note we have a separate HTML and CSS forum, within our Web Design sub-category, for markup languages.]]></description>
		<language>en-US</language>
		<lastBuildDate>Fri, 09 May 2008 13:57:03 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/forums/myimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community - JavaScript / DHTML / AJAX</title>
			<link>http://www.daniweb.com/forums</link>
		</image>
		<item>
			<title>HTML title image</title>
			<link>http://www.daniweb.com/forums/thread123220.html</link>
			<pubDate>Thu, 08 May 2008 16:22:16 GMT</pubDate>
			<description><![CDATA[hi, i am trying to put an image into the title. i mean like daniweb's title icon is the blue "db" and google's "G", you know...the image in the location bar? sorry i dont know how to explain it properly cuz i dont know what it's called.

Thanks]]></description>
			<content:encoded><![CDATA[<div>hi, i am trying to put an image into the title. i mean like daniweb's title icon is the blue &quot;db&quot; and google's &quot;G&quot;, you know...the image in the location bar? sorry i dont know how to explain it properly cuz i dont know what it's called.<br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>mikki2</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123220.html</guid>
		</item>
		<item>
			<title>Javascript moving stuff</title>
			<link>http://www.daniweb.com/forums/thread123119.html</link>
			<pubDate>Thu, 08 May 2008 05:59:19 GMT</pubDate>
			<description><![CDATA[I was going to take a look at learning ajax. 
Using php but my server doesn't support php.
I used sql and asp access 2000. From 97-00.
Got so burnt out I didn't touch another computer
Until feb 2007.

So anyway back to javascript then.
I have this script that I put together.
It moves objects by...]]></description>
			<content:encoded><![CDATA[<div>I was going to take a look at learning ajax. <br />
Using php but my server doesn't support php.<br />
I used sql and asp access 2000. From 97-00.<br />
Got so burnt out I didn't touch another computer<br />
Until feb 2007.<br />
<br />
So anyway back to javascript then.<br />
I have this script that I put together.<br />
It moves objects by getElementById.<br />
By modifing a few variables. It can be<br />
divided up into different functions.<br />
Stored as js files.<br />
<br />
Not sure how to post code here so.<br />
Right click for source. Sorry.<br />
<br />
Wanting to know how cross browser this code is.<br />
<a rel="nofollow" class="t" href="http://www.stupidharold.com/dani/flyinghorse.htm" target="_blank">http://www.stupidharold.com/dani/flyinghorse.htm</a></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>fluffythebunny</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread123119.html</guid>
		</item>
		<item>
			<title>How to make these Javascript codes work in Firefox too</title>
			<link>http://www.daniweb.com/forums/thread122833.html</link>
			<pubDate>Tue, 06 May 2008 20:59:46 GMT</pubDate>
			<description><![CDATA[------------PART ONE------------------


   if(navigator.appName == "Netscape"){
        xmlHttp = new XMLHttpRequest();
        xmlHttp.open("GET",xmlfile , false);
        xmlHttp.send(null);
        docObj = xmlHttp.responseXML;
        var objNodesname = docObj.getElementsByTagName("name");
   ...]]></description>
			<content:encoded><![CDATA[<div>------------PART ONE------------------<br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1">&nbsp;  if(navigator.appName == &quot;Netscape&quot;){<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; xmlHttp = new XMLHttpRequest();<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; xmlHttp.open(&quot;GET&quot;,xmlfile , false);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; xmlHttp.send(null);<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; docObj = xmlHttp.responseXML;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; var objNodesname = docObj.getElementsByTagName(&quot;name&quot;);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; }else{<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; var docObj = new ActiveXObject(&quot;MSXML.DOMDocument&quot;);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; docObj.load(xmlfile);<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; var objNodesname = docObj.getElementsByTagName(&quot;name&quot;);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; }</div></li></ol></pre></code> </div>
<br />
------------PART TWO------------------<br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (i = 0 ; i &lt; objNodesnames.length ; i++) {<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(navigator.appName == &quot;Netscape&quot;){<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; objcurrent=objNodesnames.item(i);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myceltext=objcurrent.childNodes.item(0);<br /></div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; currenttext=document.createTextNode(myceltext.data);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lstring=currenttext.data;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lstring=lstring.substr(4)<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lstringcode=lstring.substr(0,4)<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }else{<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lstring=objNodesnames.item(i).text;<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lstringcode=lstring.substr(0,4);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lstring=lstring.substr(4);<br /></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div></li></ol></pre></code> </div></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>cariocgl</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122833.html</guid>
		</item>
		<item>
			<title>Login window?</title>
			<link>http://www.daniweb.com/forums/thread122803.html</link>
			<pubDate>Tue, 06 May 2008 17:09:45 GMT</pubDate>
			<description>Hi,

I want to show a login pop up window that has the username and password, I want it to be like the prompt.

Can anyone help....</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I want to show a login pop up window that has the username and password, I want it to be like the prompt.<br />
<br />
Can anyone help....</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>kitsune</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122803.html</guid>
		</item>
		<item>
			<title>New to Ajax</title>
			<link>http://www.daniweb.com/forums/thread122802.html</link>
			<pubDate>Tue, 06 May 2008 17:03:12 GMT</pubDate>
			<description><![CDATA[I am wanting to learn more about ajax.
But I don't know if you need a database 
the server to be able to learn it.

Since I don't have one of those. I am
not sure if I should move on to something else.

Where would be the best place to start.
I know some css javascript and a tad of xml.]]></description>
			<content:encoded><![CDATA[<div>I am wanting to learn more about ajax.<br />
But I don't know if you need a database <br />
the server to be able to learn it.<br />
<br />
Since I don't have one of those. I am<br />
not sure if I should move on to something else.<br />
<br />
Where would be the best place to start.<br />
I know some css javascript and a tad of xml.<br />
<br />
I learn mostly by hacking code that I can understand.<br />
Thank you.<br />
<br />
Sorry I didn't mean to post this question twic.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>fluffythebunny</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122802.html</guid>
		</item>
		<item>
			<title>Can a table in HTML be floated as an element?</title>
			<link>http://www.daniweb.com/forums/thread122801.html</link>
			<pubDate>Tue, 06 May 2008 17:02:33 GMT</pubDate>
			<description><![CDATA[Can a table written in HTML be floated as an element, as in image <img src=".."> 

 I am trying to have several small blocks of text, seperated within borders 
that the text withing the box or group can float depending on screen size.
I don't know how to do this:

example:
                   ...]]></description>
			<content:encoded><![CDATA[<div>Can a table written in HTML be floated as an element, as in image &lt;img src=&quot;..&quot;&gt; <br />
<br />
 I am trying to have several small blocks of text, seperated within borders <br />
that the text withing the box or group can float depending on screen size.<br />
I don't know how to do this:<br />
<br />
example:<br />
                    -------------      -----------    -----------   --------------- <br />
                    | text       |      | text      |   |  text    |   |  text         |<br />
                    |              |      |            |   |           |    |                |<br />
                    ------------        -----------    -----------   ---------------<br />
<br />
Thanks for the help.  (Paulxh)</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>Paulxh</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122801.html</guid>
		</item>
		<item>
			<title>Ajax is new to me</title>
			<link>http://www.daniweb.com/forums/thread122787.html</link>
			<pubDate>Tue, 06 May 2008 16:03:59 GMT</pubDate>
			<description>I been seening ajax all over the place. 
The only time I have used is in the news feeds script
I got from dynamic drive.

The first question I have, is do you need to have
a database dns sort of thing to be able to begin
learning it.

Where can I find simple ajax code to hack around on.
I learn...</description>
			<content:encoded><![CDATA[<div>I been seening ajax all over the place. <br />
The only time I have used is in the news feeds script<br />
I got from dynamic drive.<br />
<br />
The first question I have, is do you need to have<br />
a database dns sort of thing to be able to begin<br />
learning it.<br />
<br />
Where can I find simple ajax code to hack around on.<br />
I learn more about syntax and sub routines. By experimenting.<br />
<br />
So if i could start on something simple. Let me know.<br />
I know some css javascript and a tad of xml.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>fluffythebunny</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122787.html</guid>
		</item>
		<item>
			<title>Data Type</title>
			<link>http://www.daniweb.com/forums/thread122774.html</link>
			<pubDate>Tue, 06 May 2008 15:01:27 GMT</pubDate>
			<description><![CDATA[Hi There.
I'm new in java script , and I want to know somthing in it.
I'm asking if i have a variable and i want to know the data type for the data in it.
I'm not sure if you understand me well , but i will give you an example:
If I have a variable named X , and this virable hold some data , how...]]></description>
			<content:encoded><![CDATA[<div>Hi There.<br />
I'm new in java script , and I want to know somthing in it.<br />
I'm asking if i have a variable and i want to know the data type for the data in it.<br />
I'm not sure if you understand me well , but i will give you an example:<br />
If I have a variable named X , and this virable hold some data , how can I know<br />
the Type for that data (int , char , bool , float , .......).<br />
and if poseple show me that in example.<br />
thank you.<br />
<br />
mosh.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>mosh</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122774.html</guid>
		</item>
		<item>
			<title>JS scoping issue</title>
			<link>http://www.daniweb.com/forums/thread122728.html</link>
			<pubDate>Tue, 06 May 2008 10:58:35 GMT</pubDate>
			<description><![CDATA[I am making a google map as part of a university project. here (http://intweb.tech.bcuc.ac.uk/~20318219/project/index.php)

and am having a few problems. Basicly for some reason my markers are not appearing as i don't think my array is being read.

Using the firebug plugin i am getting the...]]></description>
			<content:encoded><![CDATA[<div>I am making a google map as part of a university project. <a rel="nofollow" class="t" href="http://intweb.tech.bcuc.ac.uk/~20318219/project/index.php" target="_blank">here</a><br />
<br />
and am having a few problems. Basicly for some reason my markers are not appearing as i don't think my array is being read.<br />
<br />
Using the firebug plugin i am getting the following error message: markers is not defined<br />
init()map_functions.js (line 24)<br />
 for(id in markers) {  .<br />
<br />
I don't really get how to solve this problem.<br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1">var centerLatitude = 51.523647;&nbsp; //longittude and latitude coordinates and zoom geocodes<br /></div></li><li class="li1"><div class="de1">var centerLongitude = -0.146470;<br /></div></li><li class="li1"><div class="de1">var startZoom = 14;<br /></div></li><li class="li1"><div class="de1">var description = 'London';<br /></div></li><li class="li2"><div class="de2">&nbsp;</div></li><li class="li1"><div class="de1">function addMarker(latitude, longitude, description) {<br /></div></li><li class="li1"><div class="de1">var marker = new GMarker(new GLatLng(latitude, longitude));<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">GEvent.addListener(marker, 'click',<br /></div></li><li class="li2"><div class="de2">function() {<br /></div></li><li class="li1"><div class="de1">marker.openInfoWindowHtml(description);<br /></div></li><li class="li1"><div class="de1">}<br /></div></li><li class="li1"><div class="de1">);<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li2"><div class="de2">map.addOverlay(marker);<br /></div></li><li class="li1"><div class="de1">}<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">function init() {<br /></div></li><li class="li1"><div class="de1">if (GBrowserIsCompatible()) {<br /></div></li><li class="li2"><div class="de2">map = new GMap2(document.getElementById(&quot;map&quot;));<br /></div></li><li class="li1"><div class="de1">map.addControl(new GSmallMapControl());<br /></div></li><li class="li1"><div class="de1">map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li1"><div class="de1">for(id in markers) {<br /></div></li><li class="li2"><div class="de2">addMarker(markers[id].latitude, markers[id].longitude, markers[id].name, markers[id].pcode);<br /></div></li><li class="li1"><div class="de1">}<br /></div></li><li class="li1"><div class="de1">}<br /></div></li><li class="li1"><div class="de1">}<br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li><li class="li2"><div class="de2">window.onload = init;<br /></div></li><li class="li1"><div class="de1">window.onunload = GUnload; <br /></div></li><li class="li1"><div class="de1">&nbsp;</div></li></ol></pre></code> </div>
<br />
my data looks like this.<br />
<br />
<div style="margin:10px 20px 20px 20px"> <code style="margin:0px" dir="ltr" style="text-align:left"><pre class="code"><ol><li class="li1"><div class="de1"><span class="kw2">var</span> markers = <span class="br0">&#91;</span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">'latitude'</span>: <span class="nu0">51.51383</span>,</div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">'longitude'</span>: <span class="nu0">-00.15246</span>,</div></li><li class="li2"><div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">'name'</span>: <span class="st0">'Balderton street'</span>,</div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">'pcode'</span>: <span class="st0">'W1'</span></div></li><li class="li1"><div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div></li><li class="li1"><div class="de1"><span class="br0">&#93;</span>;</div></li><li class="li1"><div class="de1">&nbsp;</div></li></ol></pre></code> </div>
<br />
any help would be greatly appreciated as the project is due in on Friday!<br />
<br />
<br />
dave</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>kained</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122728.html</guid>
		</item>
		<item>
			<title>Javascript function</title>
			<link>http://www.daniweb.com/forums/thread122699.html</link>
			<pubDate>Tue, 06 May 2008 06:43:12 GMT</pubDate>
			<description>hi all,

i need javascript function to validate the Date of birth field...it should check,leap year condition and also the year should nt be the future one..

Thank u...</description>
			<content:encoded><![CDATA[<div>hi all,<br />
<br />
i need javascript function to validate the Date of birth field...it should check,leap year condition and also the year should nt be the future one..<br />
<br />
Thank u...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>Jahira</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122699.html</guid>
		</item>
		<item>
			<title>alpabetical sorting with ajax</title>
			<link>http://www.daniweb.com/forums/thread122669.html</link>
			<pubDate>Tue, 06 May 2008 03:15:35 GMT</pubDate>
			<description>how to make sorting field in table based on alphabetical sorting descending-ascending.. can anyone give a link tutorial that?</description>
			<content:encoded><![CDATA[<div>how to make sorting field in table based on alphabetical sorting descending-ascending.. can anyone give a link tutorial that?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>forzadraco</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122669.html</guid>
		</item>
		<item>
			<title>Designing for variable browser sizes</title>
			<link>http://www.daniweb.com/forums/thread122647.html</link>
			<pubDate>Tue, 06 May 2008 01:33:34 GMT</pubDate>
			<description><![CDATA[I was recently given a criticism that a project of mine seems to be designed for "small screen".  This is true as most of the work has been done on 17inch screens.  I need some general advise and suggestions on what I should be most concerned about_:  fonts, iframe sizes, div sizes etc.  I've got a...]]></description>
			<content:encoded><![CDATA[<div>I was recently given a criticism that a project of mine seems to be designed for &quot;small screen&quot;.  This is true as most of the work has been done on 17inch screens.  I need some general advise and suggestions on what I should be most concerned about<b></b>:  fonts, iframe sizes, div sizes etc.  I've got a pretty good idea what to do in specific situations.  What I don't have is a designers eye.  I've posted this query here as I'm quie sure that whatever I do will be done with AJAX.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>scottholmes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122647.html</guid>
		</item>
		<item>
			<title>Just Me</title>
			<link>http://www.daniweb.com/forums/thread122614.html</link>
			<pubDate>Mon, 05 May 2008 21:35:54 GMT</pubDate>
			<description><![CDATA[I have been back at scripting for about a year now.
I first learned basic 1.1 back in the 80's.

Now I have the IQ of a house plant.
The only way I have been able to learn javascript.
Is to see some easy code and play with it.
So I am sorry I probably won't be of much help to anyone.

Been to...]]></description>
			<content:encoded><![CDATA[<div>I have been back at scripting for about a year now.<br />
I first learned basic 1.1 back in the 80's.<br />
<br />
Now I have the IQ of a house plant.<br />
The only way I have been able to learn javascript.<br />
Is to see some easy code and play with it.<br />
So I am sorry I probably won't be of much help to anyone.<br />
<br />
Been to places like w3schools htmlgoodies. etc.<br />
And they have been very helpful. And this is the<br />
first time I ever been on this kind of site.<br />
<br />
<br />
Every once in awhile. I play with stuff and wished I knew<br />
more about it.<br />
<br />
Right now I am back at w3schools. Reviewing CSS.<br />
I found a website name of stu nichols. Who is good <br />
at css. Thats where I put it together. What div tags<br />
were for.<br />
<br />
I have conveted a couple of games I wrote back in the<br />
80's in basic.<br />
<br />
The first one is called the horse race game.<br />
I almost understood arrays when I scripted it.<br />
<br />
The way it works is. Place Bet. Pick horse.<br />
Then write out the results. Somehow I found<br />
a script for a cookie to save the score.<br />
It save the score when you restart the horses.<br />
But the horse keep running. I don't know if<br />
I should stop them or not.<br />
<br />
<a rel="nofollow" class="t" href="http://www.stupidharold.com/Dani/HorseraceHr1/horserace1.html" target="_blank">http://www.stupidharold.com/Dani/Hor...orserace1.html</a><br />
<br />
Heres another One:<br />
Called the stockmarket game.<br />
Would like to know if there is an easy learning cookie<br />
script that would save the multiple variables.<br />
<a rel="nofollow" class="t" href="http://www.stupidharold.com/harold1/Games/STKcolor/Stocky1/STKgame1.html" target="_blank">http://www.stupidharold.com/harold1/.../STKgame1.html</a><br />
<br />
Buy low and sell high.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>fluffythebunny</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122614.html</guid>
		</item>
		<item>
			<title>open a new window in same window</title>
			<link>http://www.daniweb.com/forums/thread122597.html</link>
			<pubDate>Mon, 05 May 2008 19:43:43 GMT</pubDate>
			<description>Hi there 
i have a window(A) which has a button which when clicked opens a new window(B) which is for authentication tht is for username and password once the username and password r validated a new window should open in the first window(A) how can i achive this please help
thanks in advance
FARAH</description>
			<content:encoded><![CDATA[<div>Hi there <br />
i have a window(A) which has a button which when clicked opens a new window(B) which is for authentication tht is for username and password once the username and password r validated a new window should open in the first window(A) how can i achive this please help<br />
thanks in advance<br />
FARAH</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>farahphp</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122597.html</guid>
		</item>
		<item>
			<title>Multiple ajax requests every 1 sec</title>
			<link>http://www.daniweb.com/forums/thread122574.html</link>
			<pubDate>Mon, 05 May 2008 16:26:32 GMT</pubDate>
			<description>Hi,
i need to buld an application that goes to a PHP (over ajax) and gets currency quotes every 1 seccond.
(I have set the PHP code and its working fine).
if you take a look at the table in the next page:
http://www.forex-markets.com/quotes_exotic.htm (*just an example*)
i need to refresh the...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
i need to buld an application that goes to a PHP (over ajax) and gets currency quotes every 1 seccond.<br />
(I have set the PHP code and its working fine).<br />
if you take a look at the table in the next page:<br />
<a rel="nofollow" class="t" href="http://www.forex-markets.com/quotes_exotic.htm" target="_blank">http://www.forex-markets.com/quotes_exotic.htm</a> (<b>just an example</b>)<br />
i need to refresh the quotes every 1 second.<br />
what is the best way to do that?<br />
<br />
after 90 requests the the browder crashed.<br />
i always makes sure to delete the object.<br />
and im always waiting for status 200 to send the new request so i wont create an over head.<br />
<br />
any ideas how todo that?<br />
thanks.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>fatnjazzy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread122574.html</guid>
		</item>
	</channel>
</rss>
