<?xml version="1.0" encoding="ISO-8859-1"?>

<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>WebDeveloper.com</title>
		<link>http://www.webdeveloper.com/forum</link>
		<description>WebDeveloper.com Forums, Where Web Developers and Designers Learn How to Build Web Sites, Program in HTML, Java and JavaScript and More!</description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 05:54:10 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.webdeveloper.com/forum/images/misc/rss.jpg</url>
			<title>WebDeveloper.com</title>
			<link>http://www.webdeveloper.com/forum</link>
		</image>
		<item>
			<title>mysql zip code and address database</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220288&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 04:48:31 GMT</pubDate>
			<description>I am creating a site that has a section where users can enter in the address or zip code to find if anything is in their area.  It is kind of like when you go to some company web sites and you can enter your address or zip code and it will show you stores in your area.  It looks like I need a free...</description>
			<content:encoded><![CDATA[<div>I am creating a site that has a section where users can enter in the address or zip code to find if anything is in their area.  It is kind of like when you go to some company web sites and you can enter your address or zip code and it will show you stores in your area.  It looks like I need a free or paid for mysql file that i can import that has the needed info.  So I am wondering if anyone has any suggests of good ones that you have used? Also, if you can provide a link.</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=41">SQL</category>
			<dc:creator>skywalker2208</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220288</guid>
		</item>
		<item>
			<title><![CDATA[The meaning of "$$" when assigning a value in JS?]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220287&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 03:12:19 GMT</pubDate>
			<description><![CDATA[1. What's the meaning of "$$" when assigning a value in this code? 
 
2. In what case the "$$" is used and why it's used instead of "$"? 
 
Here is the code : 
 
function sel_mul_dropCount(title_id,checkbox_class){ 
	var sel_mul_title=$(title_id) 
	var oSum=0; 
	var oMessage="";]]></description>
			<content:encoded><![CDATA[<div>1. What's the meaning of &quot;$$&quot; when assigning a value in this code?<br />
<br />
2. In what case the &quot;$$&quot; is used and why it's used instead of &quot;$&quot;?<br />
<br />
Here is the code :<br />
<br />
function sel_mul_dropCount(title_id,checkbox_class){<br />
	var sel_mul_title=$(title_id)<br />
	var oSum=0;<br />
	var oMessage=&quot;&quot;;<br />
	<font color="Blue">var oInputs=$$(&quot;input.&quot;+checkbox_class); </font><br />
	for(var i=0;i&lt;oInputs.length;i++){<br />
		if(oInputs[i].checked)<br />
		oSum++;<br />
	}<br />
	if(oSum==0)<br />
	oMessage=&quot;None&quot;<br />
	else if(oSum==oInputs.length)<br />
	oMessage=&quot;All&quot;<br />
	else<br />
	oMessage=oSum<br />
	if(sel_mul_title)<br />
	sel_mul_title.innerHTML=oMessage+&quot; selected&quot;; <br />
}<br />
<br />
help me plz</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>choistella</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220287</guid>
		</item>
		<item>
			<title>Javascript function and Alert help</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220286&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 02:31:23 GMT</pubDate>
			<description><![CDATA[Hello, I have been wracking my brain trying to create a program that will randomly get an integer from 1 to 1000 and it will prompt you to guess what the integer is.  
 
x = random integer 
guess = users guess 
 
The result is if you guess to high, your told that your guess is too high ( guess > x...]]></description>
			<content:encoded><![CDATA[<div>Hello, I have been wracking my brain trying to create a program that will randomly get an integer from 1 to 1000 and it will prompt you to guess what the integer is. <br />
<br />
x = random integer<br />
guess = users guess<br />
<br />
The result is if you guess to high, your told that your guess is too high ( guess &gt; x ), if your low, your told that your too low ( guess &lt; x ). If your correct then your congratulated. (guess = x)<br />
<br />
Now where the problem comes in, is i am trying to display the result in an Alert screen. Here is my code:<br />
<br />
function Play()<br />
	{<br />
	var GuessingField = document.getElementById(&quot;guessing&quot;);<br />
	<br />
	if(GuessingField.value = (GuessingField.value != x) )<br />
		{<br />
	GuessingField.value = (GuessingField.value &gt; x);<br />
		alert(&quot;You are too high: &quot;)<br />
		}<br />
	else if (GuessingField.value = (GuessingField.value &lt; x) )<br />
<br />
		{<br />
		GuessingField.value = (GuessingField.value &lt; x);<br />
		alert(&quot;You are too low: &quot; )<br />
	<br />
	 	}<br />
	 else if (GuessingField.value = (GuessingField.value = x) )<br />
		{<br />
		GuessingField.value = (GuessingField.value = x);<br />
	 alert(&quot;You are correct &quot;)<br />
		<br />
		else alert(&quot;Try again &quot;)<br />
<br />
		<br />
<br />
Now based on my code, if(GuessingField.value = (GuessingField.value != x) ) means this will be a true and false situation, which i need multiple situations for if the guess is greater, less, or correct. <br />
<br />
My outcome is if the guess &gt; x, it will say it's too high. if it's too low, it still says too high, and if its correct then it will say its correct. But i believe it's already defined at <br />
<br />
if(GuessingField.value = (GuessingField.value != x) )<br />
<br />
Any suggestions on what i should do?</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>Origin</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220286</guid>
		</item>
		<item>
			<title>Help on expand/collapse script</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220285&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 02:10:31 GMT</pubDate>
			<description><![CDATA[I'm using the attached script to expand/collapse part of the page content. 
 
My problem is that if I want to display an image instead of the [+] or [-] it works ok in every browser except Internet Explorer (any version). 
 
I put the img src like this: 
 
 
HTML: 
--------- 
if (lText == '<img...]]></description>
			<content:encoded><![CDATA[<div>I'm using the attached script to expand/collapse part of the page content.<br />
<br />
My problem is that if I want to display an image instead of the [+] or [-] it works ok in every browser except Internet Explorer (any version).<br />
<br />
I put the img src like this:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">HTML Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">if (lText == '<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/plus.gif&quot;</span>&gt;</span>') <br />
&nbsp; &nbsp; &nbsp; &nbsp;  { <br />
&nbsp; &nbsp; &nbsp; &nbsp;  link.innerHTML = '<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/minus.gif&quot;</span>&gt;</span>'; d.style.display = 'block'; <br />
&nbsp;}<br />
&nbsp;else<br />
&nbsp; &nbsp; &nbsp; &nbsp;  { <br />
&nbsp; &nbsp; &nbsp; &nbsp;  link.innerHTML = '<span style="color:#800080">&lt;img src=<span style="color:#0000FF">&quot;images/plus.gif&quot;</span>&gt;</span>'; d.style.display = 'none'; }</code><hr />
</div><br />
I'm not a programmer, I'm a web designer, I appreciate if someone help me.<br />
<br />
Thanks<br />
<br />
This is the complete script code. <br />
<br />
 <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">HTML Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">var ie8 = false;<br />
if(document.all)<br />
{<br />
&nbsp;ie8 = true;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
function getObject(id)<br />
{ <br />
&nbsp; &nbsp; &nbsp; &nbsp; if (ie8) <br />
&nbsp; &nbsp; &nbsp; &nbsp; { return document.all&#91;id&#93;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; } <br />
&nbsp; &nbsp; &nbsp; &nbsp; else <br />
&nbsp; &nbsp; &nbsp; &nbsp; { <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return document.getElementById(id); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
function toggle(link, divId) <br />
&nbsp; &nbsp; &nbsp; &nbsp; { var lText = link.innerHTML; var d = getObject(divId);<br />
&nbsp;if (lText == '+') <br />
&nbsp; &nbsp; &nbsp; &nbsp;  { <br />
&nbsp; &nbsp; &nbsp; &nbsp;  link.innerHTML = '-'; d.style.display = 'block'; <br />
&nbsp;}<br />
&nbsp;else<br />
&nbsp; &nbsp; &nbsp; &nbsp;  { <br />
&nbsp; &nbsp; &nbsp; &nbsp;  link.innerHTML = '+'; d.style.display = 'none'; } <br />
&nbsp;}<br />
<span style="color:#800000">&lt;/script&gt;</span></code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>WT2008</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220285</guid>
		</item>
		<item>
			<title><![CDATA[Can't figure out how to make these (supposedly) small and simple programs]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220284&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 02:09:15 GMT</pubDate>
			<description><![CDATA[I'm brand new at making JavaScript programs. I'm taking my first class and am already far behind because our teacher is absolutely HORRIBLE and doesn't teach us anything. I have about 6 programs I have to make and I'm about to give up. 
 
The only one I have any code for is a program where we have...]]></description>
			<content:encoded><![CDATA[<div>I'm brand new at making JavaScript programs. I'm taking my first class and am already far behind because our teacher is absolutely HORRIBLE and doesn't teach us anything. I have about 6 programs I have to make and I'm about to give up.<br />
<br />
The only one I have any code for is a program where we have to create a drop-down box and have it display one of 3 picture choices.<br />
<br />
I've gotten as far as creating the drop-down box but I don't know what to do to get it to display the pictures.<br />
<br />
This is the code I have for this program:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />
<br />
&lt;head&gt;<br />
<br />
&lt;meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot; /&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br />
<br />
&lt;title&gt;Project6&lt;/title&gt;<br />
<br />
&lt;style type=&quot;text/css&quot;&gt;<br />
<br />
.style1<br />
{ text-align: left; }<br />
<br />
.style2<br />
{ <br />
text-align: center;<br />
font-size: x-large;<br />
}<br />
<br />
&lt;/style&gt;<br />
<br />
&lt;script language =&quot;javascript&quot;&gt;<br />
<br />
function showimage(){<br />
<br />
if (!document.images)<br />
<br />
document.image.pictures.src=<br />
document.mygallery.options[document.mygallery.picture.selectedIndex].value<br />
return<br />
<br />
}<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;p class=&quot;style2&quot;&gt;This program will display different pictures.&lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div class=&quot;style1&quot; style=&quot;height: 22px; width: 833px&quot;&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;select name=&quot;picture&quot; size=&quot;1&quot; onchange=&quot;showimage()&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;option selected=&quot;selected&quot; value=&quot;Picture1.jpg&quot;&gt;Picture 1&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;Picture2.jpg&quot;&gt;Picture 2&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;Picture3.jpg&quot;&gt;Picture 3&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/select&gt; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&lt;/body&gt;<br />
<br />
&lt;/html&gt;</code><hr />
</div><br />
Picture1, Picture2, and Picture 3 are the names of the pics.<br />
What I don't know is what functions or actions or whatever it is I need to do to get this box to display these pictures?<br />
<br />
If anyone can help with this I'd be extremely grateful</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>mvbf987</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220284</guid>
		</item>
		<item>
			<title>IFrame Help</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220283&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 01:37:59 GMT</pubDate>
			<description><![CDATA[I have hosted my page temporarily at http://www.dinkypage.com/32878 . What I want to do is (1) allow the user to resize the Iframe. The 2nd thing I want to do with this is make it more user friendly. Currently, if someone types "yahoo.com" into the input box at the top and presses "enter," the page...]]></description>
			<content:encoded><![CDATA[<div>I have hosted my page temporarily at <a rel="nofollow" href="http://www.dinkypage.com/32878" target="_blank">http://www.dinkypage.com/32878</a> . What I want to do is (1) allow the user to resize the Iframe. The 2nd thing I want to do with this is make it more user friendly. Currently, if someone types &quot;yahoo.com&quot; into the input box at the top and presses &quot;enter,&quot; the page will just reload. I want to modify it so that it will enter that text to the Iframe.<br />
<br />
Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>onlywg</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220283</guid>
		</item>
		<item>
			<title><![CDATA[HTML, using a javascript variable in <a href>]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220282&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 01:31:56 GMT</pubDate>
			<description><![CDATA[I want to be able to append a paramter to a url used in a reference tag. 
 
The following works as I wish: 
<a href="abcu0026_u003du003cu003etextSlides.html?7"> 
but I want the 7 to be varialbe, similar to the “onClick” construct in the IMG tag below which works: 
 
<IMG...]]></description>
			<content:encoded><![CDATA[<div>I want to be able to append a paramter to a url used in a reference tag.<br />
<br />
The following works as I wish:<br />
&lt;a href=&quot;abcu0026_u003du003cu003etextSlides.html?7&quot;&gt;<br />
but I want the 7 to be varialbe, similar to the “onClick” construct in the IMG tag below which works:<br />
<br />
&lt;IMG src=&quot;http://lh5.ggpht.com/_BfSHtcWNuCI/SofG-e6YdPI/AAAAAAAAAPY/YFDaYVljoK0/P5120012.JPG&quot;<br />
     width=&quot;150&quot; height=&quot;200&quot;<br />
     onclick=&quot;window.location='abcu0026_u003du003cu003etextThumbs.html?'+speedVal&quot;<br />
     alt=&quot;&quot;&gt;<br />
<br />
speedVal is a javascript global variable set to a value between 1 and 15.<br />
<br />
When I try<br />
&lt;a href=&quot;abcu0026_u003du003cu003etextSlides.html?speedVal&quot;&gt;<br />
it presents the URL in the browser as<br />
abcu0026_u003du003cu003etextSlides.html?speedVal<br />
<br />
When I use<br />
&lt;a href=&quot;abcu0026_u003du003cu003etextSlides.html?&quot;+speedVal&gt;<br />
it presents the URL in the browser as <br />
abcu0026_u003du003cu003etextSlides.html?<br />
<br />
<br />
Is there some syntax for the javascript variable that I can use?<br />
<br />
Thanks for your  help.<br />
Andynic</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=2">HTML</category>
			<dc:creator>andynic</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220282</guid>
		</item>
		<item>
			<title>Mouseover script help?</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220281&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 00:19:47 GMT</pubDate>
			<description>Hi, 
I have been using a mouseover javascript for mouseovers over graphics that works wonderfully for my websets. I would like to be able to use the same script for a bordered webset. Is there a way to do this easily? 
The url to one of my mouseover websets is here:...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
I have been using a mouseover javascript for mouseovers over graphics that works wonderfully for my websets. I would like to be able to use the same script for a bordered webset. Is there a way to do this easily?<br />
The url to one of my mouseover websets is here:<br />
<a rel="nofollow" href="http://www.godslamb.net/wonder/santaroll.html" target="_blank">http://www.godslamb.net/wonder/santaroll.html</a><br />
You will notice that when you run your mouse over Santa, it lights up. I would like to be able to have it light up the same way on other websets I will make, but on the side of the set instead of the main graphic. (The graphics run along the side of the page.)<br />
I hope I did this right, and explained it properly.<br />
Thank you.<br />
Carol</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>Godslamb</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220281</guid>
		</item>
		<item>
			<title>navigation button disappearing only in Chrome</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220280&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 00:15:32 GMT</pubDate>
			<description><![CDATA[Hey guys. If you go here: http://www.classcleanservices.com/ and then click on the "services" button, everything works fine in all browsers EXCEPT Chrome. In Chrome when I click on the "services" button, the "about us" button disappears. Can someone confirm it is happening to them as well in...]]></description>
			<content:encoded><![CDATA[<div>Hey guys. If you go here: <a rel="nofollow" href="http://www.classcleanservices.com/" target="_blank">http://www.classcleanservices.com/</a> and then click on the &quot;services&quot; button, everything works fine in all browsers EXCEPT Chrome. In Chrome when I click on the &quot;services&quot; button, the &quot;about us&quot; button disappears. Can someone confirm it is happening to them as well in Chrome, and if so, how come?<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=7">CSS</category>
			<dc:creator>Captainkewl</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220280</guid>
		</item>
		<item>
			<title>How would I fix this?</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220279&amp;goto=newpost</link>
			<pubDate>Sat, 21 Nov 2009 00:05:53 GMT</pubDate>
			<description><![CDATA[check out the step 1 - 3 videos... In IE the Videos won't stop playing when closed or switched, but works Fine in Firefow and Safari.  
 
http://shopgbg.com/AdvancedOpportunityPage.aspx 
 
Any ideas?  
 
Thanks.]]></description>
			<content:encoded><![CDATA[<div>check out the step 1 - 3 videos... In IE the Videos won't stop playing when closed or switched, but works Fine in Firefow and Safari. <br />
<br />
<a rel="nofollow" href="http://shopgbg.com/AdvancedOpportunityPage.aspx" target="_blank">http://shopgbg.com/AdvancedOpportunityPage.aspx</a><br />
<br />
Any ideas? <br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>jbg00d</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220279</guid>
		</item>
		<item>
			<title><![CDATA[How can i pass a <select> value to php page]]></title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220278&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:55:43 GMT</pubDate>
			<description><![CDATA[ok i have auto complete that i want to be able to select a column of the database before searching on it 
i just want to pass the oneone variable over to the php page.  
 
so i have this  javascript 
 
 
Code: 
--------- 
<script type="text/javascript"> 
$().ready(function() {]]></description>
			<content:encoded><![CDATA[<div>ok i have auto complete that i want to be able to select a column of the database before searching on it<br />
i just want to pass the oneone variable over to the php page. <br />
<br />
so i have this  javascript<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;script type=&quot;text/javascript&quot;&gt;<br />
$().ready(function() {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; function log(event, data, formatted) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(&quot;&lt;li&gt;&quot;).html( !data ? &quot;No match!&quot; : &quot;Selected: &quot; + formatted).appendTo(&quot;#result&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; $(&quot;#search&quot;).autocomplete(&quot;test.php&quot;, {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 260,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selectFirst: false<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; $(&quot;#search&quot;).result(function(event, data, formatted) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (data)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(this).parent().next().find(&quot;input&quot;).val(data[1]);<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
$(&quot;:text, textarea&quot;).result(log).next().click(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(this).prev().search(); // shows resluts<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
<br />
});<br />
<br />
<br />
&lt;/script&gt;</code><hr />
</div>the html <br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp; &lt;p class=&quot;field&quot; &gt; &lt;select id=&quot;oneone&quot; name=&quot;oneone&quot; style=&quot;width:100px;margin:5px 0 5px 0;&quot; value=&quot;&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;s_last&quot;&gt;Last Name&lt;/option&gt;<br />
&lt;option value=&quot;s_first&quot;&gt;First Name&lt;/option&gt;<br />
<br />
&lt;label&gt;Search&lt;/label&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;text&quot; id=&quot;search&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;label&gt;Hidden input&lt;/label&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input&nbsp; type=&quot;text&quot; id=&quot;inputit&quot; /&gt;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>webevelopersFTW</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220278</guid>
		</item>
		<item>
			<title>PHP Session HELP!!!</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220277&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:19:06 GMT</pubDate>
			<description><![CDATA[Hello again  
I'm new to php just know the basics and i'm having a problem with session variables  
 
whats happening is i'm using a commenting program from GentleSource which is working great the only problem is that it produces its own session variables  
and well i'm carring session varibles...]]></description>
			<content:encoded><![CDATA[<div>Hello again <br />
I'm new to php just know the basics and i'm having a problem with session variables <br />
<br />
whats happening is i'm using a commenting program from GentleSource which is working great the only problem is that it produces its own session variables <br />
and well i'm carring session varibles from page to page starting from the login <br />
<br />
login<br />
session_start();<br />
$_session['....'] = $.....;<br />
<br />
other pages <br />
session_start();<br />
$.... = $_session['...'];<br />
<br />
now all my session variables are doing is carring over the user information from page to page to make sure someone is logged in or not <br />
<br />
the problem i'm having is that there are 2 session_start so i get an ignore message for the other set of session variables and i was wonder is there a way i can add my session variables that are being asked on pages to the other set. <br />
<br />
i've tried putting them in the commenting program but the code is way over my head so i cant do it that way . if any one could help me that would be awesome.</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=16">PHP</category>
			<dc:creator>Yokiest</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220277</guid>
		</item>
		<item>
			<title>select-multiple click !!</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220276&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:10:43 GMT</pubDate>
			<description><![CDATA[Please, I'm trying to help one non-profit organization developing one applescript, but I don't know anything about javascript and I need to find some command to activate one link through the 'do javascript "command" ' in applescript. 
 
here is the HTML: 
 
<select title="Experience - Available"...]]></description>
			<content:encoded><![CDATA[<div>Please, I'm trying to help one non-profit organization developing one applescript, but I don't know anything about javascript and I need to find some command to activate one link through the 'do javascript &quot;command&quot; ' in applescript.<br />
<br />
here is the HTML:<br />
<br />
&lt;select title=&quot;Experience - Available&quot; multiple=&quot;multiple&quot; size=&quot;5&quot; id=&quot;00N70000001w9i1_unselected&quot; tabIndex=&quot;27&quot;&gt;&lt;/select&gt;&lt;/span&gt;&lt;/td&gt;&lt;td class='multiSelectPicklistCell'&gt;<br />
&lt;a href=&quot;javascript<b></b>:MultiSelectPicklist.handleMSPSelect%28%2700N70000001w9i1%27%29%3B&quot;&gt;&lt;img src=&quot;/img/arrow2_picklist_right.gif&quot; alt=&quot;Select&quot; width=&quot;17&quot; height=&quot;17&quot; align=&quot;texttop&quot; id=&quot;00N70000001w9i1_right_arrow&quot; style=&quot;cursor:pointer;&quot; title=&quot;Select&quot; /&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;<br />
&lt;a href=&quot;javascript<b></b>:MultiSelectPicklist.handleMSPUnSelect%28%2700N70000001w9i1%27%29%3B&quot;&gt;&lt;img src=&quot;/img/arrow2_picklist_left.gif&quot; alt=&quot;Remove&quot; width=&quot;17&quot; height=&quot;17&quot; align=&quot;texttop&quot; id=&quot;00N70000001w9i1_left_arrow&quot; style=&quot;cursor:pointer;&quot; title=&quot;Remove&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;td&gt;<br />
&lt;span&gt;&lt;select title=&quot;Experience - Selected&quot; multiple=&quot;multiple&quot; size=&quot;5&quot; id=&quot;00N70000001w9i1_selected&quot; tabIndex=&quot;27&quot;&gt;&lt;/select&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
<br />
I hope this information is enough to help me. <br />
I need to click on these links shown, but I don't know how.<br />
<br />
Please, if someone can help me. It's for a good cause.<br />
<br />
Thx!</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>tahim</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220276</guid>
		</item>
		<item>
			<title>Text Field Value to Equal Radio Value</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220275&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 20:35:32 GMT</pubDate>
			<description>Hi Everyone, 
I would like to know if I can get javascript to simply pass the value of a text field to a radio field.   
 
Here is the scenario: 
I have a form with 2 fields (a radio group and a text field) where a user either chooses an option from a radio group or enters their own value.  It...</description>
			<content:encoded><![CDATA[<div>Hi Everyone,<br />
I would like to know if I can get javascript to simply pass the value of a text field to a radio field.  <br />
<br />
Here is the scenario:<br />
I have a form with 2 fields (a radio group and a text field) where a user either chooses an option from a radio group or enters their own value.  It looks like this:<br />
<font color="Blue"><b>1. Select an option:<br />
   o     A<br />
   o     B<br />
   o     C<br />
   o     Other<br />
2. If you chose Other, enter value here: ______<br />
</b></font><br />
Therefore, when the values get posted in the form results, it would either be &quot;A&quot;, &quot;B&quot;, &quot;C&quot; or [what the user entered in the text field].<br />
<br />
I am not too skilled with Javascript, so I am open to suggestions.  If it is possible to just have a pop-up text box appear if they select &quot;Other&quot; that can capture the value, then that would be great too.  Whatever is the easiest option.<br />
<br />
Thanks in advance for the help.<br />
:)</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>FattiFat</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220275</guid>
		</item>
		<item>
			<title>Java script popup window with links</title>
			<link>http://www.webdeveloper.com/forum/showthread.php?t=220274&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 20:22:41 GMT</pubDate>
			<description>I am using this script (http://javascript.internet.com/navigation/pop-up-link-with-description.html) to create popup boxes sith information when users hover over a picture. The code works fine in IE 8 on the above referenced link. However, when I put it on our website, it gives an error  
...</description>
			<content:encoded><![CDATA[<div>I am using <a rel="nofollow" href="http://javascript.internet.com/navigation/pop-up-link-with-description.html" target="_blank">this script</a> to create popup boxes sith information when users hover over a picture. The code works fine in IE 8 on the above referenced link. However, when I put it on our website, it gives an error <br />
<br />
Message: 'object1.style' is null or not an object<br />
Line: 324<br />
Char: 5<br />
Code: 0<br />
<br />
It works great in Firefox, just IE is causing a problem. The website in questions is <br />
<br />
<a rel="nofollow" href="http://www.stafford-catalog.com" target="_blank">www.stafford-catalog.com</a><br />
<br />
Could anyone tell me what the problem might be? Thanks.</div>

]]></content:encoded>
			<category domain="http://www.webdeveloper.com/forum/forumdisplay.php?f=3">JavaScript</category>
			<dc:creator>kurie726</dc:creator>
			<guid isPermaLink="true">http://www.webdeveloper.com/forum/showthread.php?t=220274</guid>
		</item>
	</channel>
</rss>
