<?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>Dynamic Drive Forums</title>
		<link>http://www.dynamicdrive.com/forums/</link>
		<description>Dynamic Drive help forum</description>
		<language>en</language>
		<lastBuildDate>Wed, 16 May 2012 11:46:06 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>10</ttl>
		<image>
			<url>http://www.dynamicdrive.com/forums/images/misc/rss.jpg</url>
			<title>Dynamic Drive Forums</title>
			<link>http://www.dynamicdrive.com/forums/</link>
		</image>
		<item>
			<title>Resolved Blink tag in javascript</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68959&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 09:35:30 GMT</pubDate>
			<description>Hiya guys, 
I was just wondering about the html blink tag. I know it doesnt work in all browsers, but I also know that you can acheive the same effect using javascript, so would you guys possibly be able to teach me some javascript that would do the equivalent of a blink tag for all browsers?...</description>
			<content:encoded><![CDATA[<div>Hiya guys,<br />
I was just wondering about the html blink tag. I know it doesnt work in all browsers, but I also know that you can acheive the same effect using javascript, so would you guys possibly be able to teach me some javascript that would do the equivalent of a blink tag for all browsers?<br />
thanks,<br />
bernie</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=7">JavaScript</category>
			<dc:creator>bernie1227</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68959</guid>
		</item>
		<item>
			<title>Travesti.</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68956&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 08:59:25 GMT</pubDate>
			<description>Travesti,The lifetime dream of the Bonnouvriers to host the chicest bureau in Turkish has in actuality appear accurate in all its manifestations. Travestibestmodel one of the alone two acclimatized casting names in the adobe industry. 
-------------------- 
Travesti....</description>
			<content:encoded><![CDATA[<div>Travesti,The lifetime dream of the Bonnouvriers to host the chicest bureau in Turkish has in actuality appear accurate in all its manifestations. Travestibestmodel one of the alone two acclimatized casting names in the adobe industry.<br />
--------------------<br />
<a href="http://www.travestibestmodel.net/" target="_blank">Travesti.</a></div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=19">MySQL and other databases</category>
			<dc:creator>debid25</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68956</guid>
		</item>
		<item>
			<title>Autorun for USB</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68953&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 04:44:24 GMT</pubDate>
			<description><![CDATA[Hello everyone, 
I'm tryingto run a exe file on my usb when I plug it into the computer. Autorun doesn't work on windows 7 on usb sticks... 
 
Has anyone got a suggestion. 
 
It's only for one usb stick. 
 
 
Thanks, Keyboard1333]]></description>
			<content:encoded><![CDATA[<div>Hello everyone,<br />
I'm tryingto run a exe file on my usb when I plug it into the computer. Autorun doesn't work on windows 7 on usb sticks...<br />
<br />
Has anyone got a suggestion.<br />
<br />
It's only for one usb stick.<br />
<br />
<br />
Thanks, Keyboard1333</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=27">Computer hardware and software</category>
			<dc:creator>keyboard1333</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68953</guid>
		</item>
		<item>
			<title>Running total with dropdown</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68952&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 03:34:13 GMT</pubDate>
			<description>I have managed to get the check boxes and radio button values adding to the running total, but cannot manage to get the drop down to do the same. Basically all I am trying to do is when small is selected it adds $10 to the running total, medium $15 and large $20. 
 
What I currently have is, 
...</description>
			<content:encoded><![CDATA[<div>I have managed to get the check boxes and radio button values adding to the running total, but cannot manage to get the drop down to do the same. Basically all I am trying to do is when small is selected it adds $10 to the running total, medium $15 and large $20.<br />
<br />
What I currently have is,<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;<br />
&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 />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br />
&lt;title&gt;Pizza&lt;/title&gt;<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
<br />
function CalculateTotal(inputItem) {<br />
<br />
&nbsp;var frm=inputItem.form;<br />
&nbsp;if (!frm.fields) frm.fields='';<br />
&nbsp;if (!frm.fields.match(inputItem.name)) frm.fields+=inputItem.name+',' // add the inputItem name to frm.fields<br />
&nbsp;var fieldary=frm.fields.split(','); // convert frm.fields to an array<br />
&nbsp;var cal=0;<br />
<br />
&nbsp;for (var zxc0=0;zxc0&lt;fieldary.length-1;zxc0++){&nbsp; // loop through the field names<br />
&nbsp; var input=document.getElementsByName(fieldary[zxc0]); // an array of fields with the mame<br />
&nbsp; for (var zxc0a=0;zxc0a&lt;input.length;zxc0a++){&nbsp; // loop through the input array to detect checked fields<br />
&nbsp;  if (input[zxc0a].checked) cal+=input[zxc0a].value*1; // convert the value to a number and add to cal<br />
&nbsp; }<br />
&nbsp;}<br />
&nbsp;frm.calculatedTotal.value=cal;<br />
&nbsp;frm.total.value=formatCurrency(cal);<br />
}<br />
<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // format a value as currency.<br />
&nbsp; &nbsp; &nbsp; &nbsp; function formatCurrency(num) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; num = num.toString().replace(/\$|\,/g,'');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(isNaN(num))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  num = &quot;0&quot;;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sign = (num == (num = Math.abs(num)));<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; num = Math.floor(num*100+0.50000000001);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cents = num%100;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; num = Math.floor(num/100).toString();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(cents&lt;10)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cents = &quot;0&quot; + cents;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (var i = 0; i &lt; Math.floor((num.length-(1+i))/3); i++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; num = num.substring(0,num.length-(4*i+3)) + ',' + num.substring(num.length-(4*i+3));<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return (((sign)?'':'-') + '$' + num + '.' + cents);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // This function initialzes all the form elements to default values<br />
&nbsp; &nbsp; &nbsp; &nbsp; function InitForm() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Reset values on form<br />
&nbsp; &nbsp; &nbsp; &nbsp; var frm=document.selectionForm;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frm.total.value='$0.00';&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // set initial total<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frm.calculatedTotal.value=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frm.previouslySelectedRadioButton.value=0;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Set all checkboxes and radio buttons on form to unchecked:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (i=0; i &lt; frm.elements.length; i++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (frm.elements[i].type == 'checkbox' || frm.elements[i].type == 'radio') {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frm.elements[i].checked =(frm.elements[i].value!='0.00')? false:true;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body onLoad=&quot;InitForm();&quot; onreset=&quot;InitForm();&quot;&gt;<br />
<br />
&lt;table width=&quot;770&quot; height=&quot;171&quot; border=&quot;1&quot; cellpadding=&quot;3&quot;&gt;<br />
&nbsp;<br />
&nbsp;  &lt;tr&gt;<br />
&nbsp; &nbsp; &lt;td width=&quot;462&quot;&gt;&lt;form method=&quot;POST&quot; name=&quot;selectionForm&quot;&gt;<br />
&nbsp; &nbsp; &lt;fieldset&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;legend&gt;NEW PIZZA SELECTION&lt;/legend&gt;<br />
(pricing estimate)<br />
&nbsp; &lt;p&gt;Select the size pizza (base price of all types):<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;select name=&quot;size&quot; id = &quot;size&quot; onchange=&quot;CalculateTotal();&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=2.50 selected&gt;small ($10)&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=2.50&nbsp; &gt;medium ($15)&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=2.50 &gt;large ($20)&lt;/option&gt;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/select&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/p&gt;<br />
&nbsp; Select pizza type:<br />
&nbsp; &lt;table width=&quot;292&quot;&gt;<br />
&nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;td&gt;&lt;label&gt;<br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;radio&quot; id=&quot;RadioGroup1_0&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; Supreme<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;radio&quot; id=&quot;RadioGroup1_1&quot; /&gt;<br />
Meat Lovers<br />
&lt;input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;radio&quot; id=&quot;RadioGroup1_2&quot; /&gt;<br />
Aussie&lt;/label&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &lt;/tr&gt;<br />
<br />
&nbsp; &lt;/table&gt;<br />
&nbsp; &lt;p&gt;Select additional topping (each topping is $2.50): &lt;/p&gt;<br />
&nbsp; &lt;table width=&quot;200&quot; border=&quot;0&quot; cellspacing=&quot;5&quot; cellpadding=&quot;1&quot;&gt;<br />
&nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;70&quot;&gt;Ham: &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;111&quot;&gt;<br />
&nbsp; &lt;input type=&quot;checkbox&quot; name=&quot;ham&quot;&nbsp;  value=2.50&nbsp; onclick=&quot;CalculateTotal(this);&quot;&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;70&quot;&gt;Cheese: &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;111&quot;&gt;<br />
&nbsp; &lt;input type=&quot;checkbox&quot; name=&quot;cheese&quot;&nbsp;  value=2.50&nbsp; onclick=&quot;CalculateTotal(this);&quot;&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;70&quot;&gt;Olives: &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;111&quot;&gt;<br />
&nbsp; &lt;input type=&quot;checkbox&quot; name=&quot;olives&quot;&nbsp;  value=2.50&nbsp; onclick=&quot;CalculateTotal(this);&quot;&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;70&quot;&gt;Peppers: &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;111&quot;&gt;<br />
&nbsp; &lt;input type=&quot;checkbox&quot; name=&quot;peppers&quot;&nbsp;  value=2.50&nbsp; onclick=&quot;CalculateTotal(this);&quot;&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;70&quot;&gt;Anchovies: &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;111&quot;&gt;<br />
&nbsp; &lt;input type=&quot;checkbox&quot; name=&quot;anchovies&quot;&nbsp;  value=2.50&nbsp; onclick=&quot;CalculateTotal(this);&quot;&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;70&quot;&gt;Salami: &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td width=&quot;111&quot;&gt;<br />
&nbsp; &lt;input type=&quot;checkbox&quot; name=&quot;salami&quot;&nbsp;  value=2.50&nbsp; onclick=&quot;CalculateTotal(this);&quot;&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &lt;/table&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;p&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;/p&gt;<br />
&lt;p&gt;Select the type of packaging: &lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;table width=&quot;200&quot;&gt;<br />
&nbsp; &nbsp; &nbsp;  &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;radio&quot; name=&quot;Sauce&quot;&nbsp; value=1.00 onClick=&quot;CalculateTotal(this);&quot;&gt; Plastic $1.00<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp;  &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;radio&quot; name=&quot;Sauce&quot;&nbsp; value=1.00 onClick=&quot;CalculateTotal(this);&quot;&gt; Plastic $1.00<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;radio&quot; name=&quot;Sauce&quot;&nbsp; value=1.00 onClick=&quot;CalculateTotal(this);&quot;&gt; Plastic $1.00<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;/table&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;p&gt;<br />
&nbsp; &lt;input type=&quot;hidden&quot; name=&quot;calculatedTotal&quot; value=0&gt;<br />
&nbsp; &lt;input type=&quot;hidden&quot; name=&quot;previouslySelectedRadioButton&quot; value=0&gt;<br />
&nbsp; &lt;font size=+1&gt; Your total is: &lt;/font&gt;&lt;font face=Arial size=2&gt;&lt;font size=+1&gt;<br />
&nbsp; &lt;input type=&quot;text&quot; name=&quot;total&quot; readonly onFocus=&quot;this.blur();&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;br /&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;/p&gt;<br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;button&quot; name=&quot;resetBtn&quot; id=&quot;resetBtn&quot; value=&quot;Reset&quot; onClick=&quot;InitForm();&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;button&quot; name=&quot;confirmBtn&quot; id=&quot;confirmBtn&quot; value=&quot;ADD TO<br />
ORDER&quot; /&gt;<br />
&nbsp; &nbsp; &lt;/p&gt;<br />
&nbsp; &nbsp; &lt;/fieldset&gt;<br />
<br />
<br />
&nbsp; &nbsp; &lt;/form&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &lt;/tr&gt;<br />
<br />
&nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; <br />
&nbsp; &lt;/tr&gt;<br />
&nbsp;  &lt;tr&gt;<br />
&lt;/table&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=7">JavaScript</category>
			<dc:creator>shadow29</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68952</guid>
		</item>
		<item>
			<title>Did my thread attract spam that quickly?</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68951&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 00:03:19 GMT</pubDate>
			<description>Just curious, but did my thread on bypassing a wireless router software attract spam that quickly or was it a preventative measure ;)?</description>
			<content:encoded><![CDATA[<div>Just curious, but did my thread on bypassing a wireless router software attract spam that quickly or was it a preventative measure ;)?</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=16">The lounge</category>
			<dc:creator>james438</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68951</guid>
		</item>
		<item>
			<title>Resolved Continuous Reel Slideshow and Ajax Livesearch</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68950&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 22:31:21 GMT</pubDate>
			<description>1) Script Title: Continuous Reel Slideshow 
 
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex14/reelslideshow.htm 
 
3) Describe problem: When I add the slideshow to a page that has an Ajax livesearch - that functionality stops when reelslideshow.js is included. I cannot determine...</description>
			<content:encoded><![CDATA[<div>1) Script Title: Continuous Reel Slideshow<br />
<br />
2) Script URL (on DD): <a href="http://www.dynamicdrive.com/dynamicindex14/reelslideshow.htm" target="_blank">http://www.dynamicdrive.com/dynamici...lslideshow.htm</a><br />
<br />
3) Describe problem: When I add the slideshow to a page that has an Ajax livesearch - that functionality stops when reelslideshow.js is included. I cannot determine why this is happening. <br />
<br />
The javascript for the livesearch is sourced in the last line before &lt;/body&gt;<br />
<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">function findValue(li) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if( li == null ) return alert(&quot;No match!&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // if coming from an AJAX call, let's use the CityId as the value<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if( !!li.extra ) var sValue = li.extra[0];<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // otherwise, let's just display the value in the text box<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else var sValue = li.selectValue;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //alert(&quot;The value you selected was: &quot; + sValue);<br />
<br />
&nbsp; }<br />
<br />
<br />
<br />
&nbsp; function selectItem(li) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; findValue(li);<br />
<br />
&nbsp; }<br />
<br />
<br />
<br />
&nbsp; function formatItem(row) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return row[0];<br />
<br />
&nbsp; }<br />
<br />
&nbsp; <br />
<br />
&nbsp; function getBusinessId() {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; return&nbsp; &nbsp; &nbsp; &nbsp;  'top-business';<br />
<br />
&nbsp; }&nbsp;  <br />
<br />
&nbsp; <br />
<br />
&nbsp; $(&quot;#zip&quot;).autocomplete(&quot;page2.php&quot;, {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; delay:5,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; minChars:1,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; matchSubset:1,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; matchContains:1,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cacheLength:10,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onItemSelect:selectItem,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onFindValue:findValue,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; formatItem:formatItem,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; extraParams:{b:getBusinessId()},<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; maxItemsToShow: 12,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //autoFill:true<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; );<br />
<br />
&nbsp; <br />
<br />
&nbsp; <br />
<br />
&nbsp; $(&quot;#business&quot;).autocomplete(&quot;page1.php&quot;, {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; delay:5,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; minChars:1,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; matchSubset:1,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; matchContains:1,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cacheLength:10,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onItemSelect:selectItem,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; onFindValue:findValue,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; formatItem:formatItem,&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; maxItemsToShow: 12,<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //autoFill:true<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; );</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=2">Dynamic Drive scripts help</category>
			<dc:creator>packetloss</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68950</guid>
		</item>
		<item>
			<title>Complete the url</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68949&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 20:35:40 GMT</pubDate>
			<description><![CDATA[I'm not really sure if this would in html, javascript, etc... But I'm looking to see if I can have where all you have to do is complete the url and go. 
 
ex.:http://www.dynamicdrive.com/ would already be there and someone would just have to finish it off. ex.:http://www.dynamicdrive.com/forums...]]></description>
			<content:encoded><![CDATA[<div>I'm not really sure if this would in html, javascript, etc... But I'm looking to see if I can have where all you have to do is complete the url and go.<br />
<br />
ex.:<a href="http://www.dynamicdrive.com/" target="_blank">http://www.dynamicdrive.com/</a> would already be there and someone would just have to finish it off. ex.:<a href="http://www.dynamicdrive.com/forums" target="_blank">http://www.dynamicdrive.com/forums</a> then go.<br />
<br />
Can this be done? I was hoping to have on site &amp; go to browser/window.</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=12">Other</category>
			<dc:creator>Q Mark</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68949</guid>
		</item>
		<item>
			<title>Animated Collapsible DIV HELP</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68948&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 17:23:05 GMT</pubDate>
			<description>1) Script Title: Animated Collapsible DIV 
 
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/animatedcollapse.htm 
 
3) Describe problem: First of all thank you to DD for having such an excellent website with such a source for information. 
 
I use this script to run my entire...</description>
			<content:encoded><![CDATA[<div>1) Script Title: Animated Collapsible DIV<br />
<br />
2) Script URL (on DD): <a href="http://www.dynamicdrive.com/dynamicindex17/animatedcollapse.htm" target="_blank">http://www.dynamicdrive.com/dynamici...edcollapse.htm</a><br />
<br />
3) Describe problem: First of all thank you to DD for having such an excellent website with such a source for information.<br />
<br />
I use this script to run my entire website. However I would like to be able to have one DIV close whenever another DIV is opened. As of now I think my visitors are getting lost in having to close so many DIVs.<br />
<br />
I am not sure of the name of the script and I might have titled this with the wrong one. Below is a sample of the code which hopefully someone has seen before.<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
    $(document).ready(function() {<br />
        $(&quot;.flip22&quot;).click(function() {<br />
            $(&quot;.panel22&quot;).slideToggle(&quot;slow&quot;);<br />
        });<br />
    });<br />
    &lt;/script&gt;<br />
<br />
    &lt;style type=&quot;text/css&quot;&gt;<br />
        div.panel22, p.flip22<br />
        {<br />
            margin: 0px;<br />
            padding: 0px;<br />
            text-align: center;<br />
            background: #303030;<br />
            border: solid 0px #c3c3c3;<br />
        }<br />
        div.panel22<br />
        {<br />
            display: none;<br />
        }<br />
    &lt;/style&gt;<br />
<br />
&lt;div class=&quot;panel&quot;&gt;&lt;div&gt; Used to hide panel<br />
<br />
&lt;div class=&quot;flip&quot;&gt;&lt;/div&gt; Used to open panel<br />
<br />
This is an excellent script but I do not have a clue how to modify it.<br />
<br />
Thank you for you help.</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=2">Dynamic Drive scripts help</category>
			<dc:creator>ApartmentPostings</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68948</guid>
		</item>
		<item>
			<title>Form validation / submit to url</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68947&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 17:18:20 GMT</pubDate>
			<description><![CDATA[I am trying to set up a form that contains 3 text fields as well as select between two radio spots. I'd like all fields to be required to be filled in as well as (if possible) verify the email is valid. Then after clicking submit I'd like this to go to a url, but only be able to access the url from...]]></description>
			<content:encoded><![CDATA[<div>I am trying to set up a form that contains 3 text fields as well as select between two radio spots. I'd like all fields to be required to be filled in as well as (if possible) verify the email is valid. Then after clicking submit I'd like this to go to a url, but only be able to access the url from this form page with all fields complete.<br />
<br />
Still new to Javascript sorry! Thanks in advance<br />
<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
function validateForm()<br />
{<br />
var x=document.forms[&quot;myForm&quot;][&quot;fname&quot;].value;<br />
if (x==null || x==&quot;&quot;)<br />
  {<br />
  alert(&quot;First Name must be filled out&quot;);<br />
  return false;<br />
  }<br />
}<br />
{<br />
var x=document.forms[&quot;myForm&quot;][&quot;lname&quot;].value;<br />
if (x==null || x==&quot;&quot;)<br />
  {<br />
  alert(&quot;Last Name must be filled out&quot;);<br />
  return false;<br />
  }<br />
}<br />
{<br />
var x=document.forms[&quot;myForm&quot;][&quot;email&quot;].value;<br />
var atpos=x.indexOf(&quot;@&quot;);<br />
var dotpos=x.lastIndexOf(&quot;.&quot;);<br />
if (atpos&lt;1 || dotpos&lt;atpos+2 || dotpos+2&gt;=x.length)<br />
  {<br />
  alert(&quot;Not a valid e-mail address&quot;);<br />
  return false;  }<br />
}<br />
<br />
function GetSelectedItem() {<br />
<br />
chosen = &quot;&quot;<br />
len = document.f1.r1.length<br />
<br />
for (i = 0; i &lt;len; i++) {<br />
if (document.f1.r1[i].checked) {<br />
chosen = document.f1.r1[i].value<br />
}<br />
}<br />
<br />
if (chosen == &quot;&quot;) {<br />
alert(&quot;No Type Chosen&quot;)<br />
}<br />
else {<br />
alert(chosen)<br />
}<br />
}<br />
&lt;/script&gt;<br />
<br />
<br />
&lt;table style=&quot;width: 300px;&quot; align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;form name=&quot;myForm&quot; action=&quot;https://thecesolution.cecity.com/&quot; onsubmit=&quot;returnvalidateForm()&quot; method=&quot;get&quot;&gt;<br />
		&lt;tbody&gt;&lt;tr&gt;<br />
			&lt;td width=&quot;135px&quot;&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 12px; padding-left: 15px;&quot;&gt;<br />
			&lt;strong&gt;First <br />
			Name:&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
			&lt;td style=&quot;width: 165px;&quot;&gt;&lt;input name=&quot;fname&quot; type=&quot;text&quot;&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
			&lt;tr&gt;<br />
			&lt;td width=&quot;135px&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
			&lt;td style=&quot;width: 165px;&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 12px; padding-left: 15px;&quot;&gt;<br />
			&lt;strong&gt;Last <br />
			Name:&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
			&lt;td style=&quot;width: 165px;&quot;&gt;&lt;input name=&quot;lname&quot; type=&quot;text&quot;&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
			&lt;td style=&quot;width: 165px;&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 12px; padding-left: 15px;&quot;&gt;<br />
			&lt;strong&gt;Email Address:&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
			&lt;td style=&quot;width: 165px;&quot;&gt;&lt;input name=&quot;email&quot; type=&quot;text&quot;&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
			&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan=&quot;2&quot; style=&quot;padding-left:15px; padding-bottom:7px;&quot;&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 12px;&quot;&gt;<br />
			&lt;strong&gt;Which best describes your workplace?&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td style=&quot;text-align: center&quot;&gt;<br />
			&lt;input type=&quot;radio&quot; name=&quot;r1&quot; value=&quot;location&quot; /&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 12px;&quot;&gt;&lt;strong&gt; &lt;/strong&gt;Independent <br />
			&lt;br /&gt;<br />
			&lt;/span&gt;&lt;/td&gt;<br />
			&lt;td style=&quot;text-align: center&quot;&gt;<br />
&lt;input type=&quot;radio&quot; name=&quot;r1&quot; value=&quot;Franchise&quot; /&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: 12px;&quot;&gt;&lt;strong&gt; &lt;/strong&gt;Franchise<br />
			&lt;br /&gt;<br />
			&lt;/span&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
		&lt;tr&gt;<br />
			&lt;td colspan=&quot;2&quot; style=&quot;padding-top: 15px;&quot; align=&quot;center&quot;&gt;&lt;input value=&quot;Submit&quot; type=&quot;submit&quot; onclick=&quot;parent.location='https://thecesolution.cecity.com/&quot;&gt;&lt;/td&gt;<br />
		&lt;/tr&gt;<br />
	&lt;/tbody&gt;&lt;/form&gt;&lt;/table&gt;</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=7">JavaScript</category>
			<dc:creator>firstnam</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68947</guid>
		</item>
		<item>
			<title>Opaque Menu</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68945&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 16:26:16 GMT</pubDate>
			<description>1) Script Title: Omnislide Menu 
 
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex1/omnislide/index.htm 
 
3) Describe problem:  
 
I am using this slide in menu on my website: 
 
www.capturesbymcq.com</description>
			<content:encoded><![CDATA[<div>1) Script Title: Omnislide Menu<br />
<br />
2) Script URL (on DD): <a href="http://www.dynamicdrive.com/dynamicindex1/omnislide/index.htm" target="_blank">http://www.dynamicdrive.com/dynamici...lide/index.htm</a><br />
<br />
3) Describe problem: <br />
<br />
I am using this slide in menu on my website:<br />
<br />
<a href="http://www.capturesbymcq.com" target="_blank">www.capturesbymcq.com</a><br />
<br />
I would really love to make the menu bar opaque, but have not been able to figure that one out stumbling around in the dark.  If anyone can point me in the right direction, I would appreciate it.</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=2">Dynamic Drive scripts help</category>
			<dc:creator>ScottMcQ</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68945</guid>
		</item>
		<item>
			<title>Help with Appending to Form</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68944&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 15:32:28 GMT</pubDate>
			<description><![CDATA[Greetings! I hope you guys can help me. I'm working on adding a shopping cart to our site, but they do a terrible job of offering tweaks to their embed link code. 
 
I'm trying to create a form that will have the user choose the size they want and input the quantity and then on submit, assemble the...]]></description>
			<content:encoded><![CDATA[<div>Greetings! I hope you guys can help me. I'm working on adding a shopping cart to our site, but they do a terrible job of offering tweaks to their embed link code.<br />
<br />
I'm trying to create a form that will have the user choose the size they want and input the quantity and then on submit, assemble the URL and send them there.<br />
<br />
For instance, this is the URL that links to the cart<br />
<a href="http://www.sudzzfx.com/shop/cmd.php?pid=cf17eb9161924ed6847abc14428f35db&amp;bn=1&amp;amp;qty=" target="_blank">http://www.sudzzfx.com/shop/cmd.php?...&amp;bn=1&amp;amp;qty=</a><br />
Where the pid= is the product id and the quantity will be the quantity someone wants to buy.<br />
<br />
I tried to create this form, but it doesn't seem to be working:<br />
<br />
&lt;form action=&quot;&quot; method=&quot;post&quot; name=&quot;form1&quot; onsubmit=&quot;window.location='http://www.sudzzfx.com/shop/cmd.php?pid=' +document.form1.selectfield1.value +&amp;HTML='&amp;amp;qty=' +document.form1.textfield1.value; return false;&quot;&gt;&lt;select size=&quot;1&quot; name=&quot;selectfield1&quot;&gt;&lt;option value=&quot;0&quot; selected&gt;Choose your size&lt;/option&gt;&lt;option value=&quot;cf17eb9161924ed6847abc14428f35db&amp;bn=1&quot;&gt;10oz&lt;/option&gt;&lt;option value=&quot;85cb1ca070ba40b2a156239f5d8415e9&amp;bn=1&quot;&gt;32oz&lt;/option&gt;&lt;/select&gt;&lt;input type=&quot;text&quot; name=&quot;textfield1&quot; value=&quot;1&quot; size=&quot;2&quot; maxlength=&quot;3&quot; /&gt; &lt;input style=&quot;border: 0;&quot; type=&quot;image&quot; name=&quot;submit&quot; src=&quot;http://www.mcssl.com/netcart/images/cart_buttons/cart_button_6.gif&quot; alt=&quot;submit&quot; /&gt;&lt;/form&gt;<br />
<br />
I'd appreciate any help</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=8">HTML</category>
			<dc:creator>ken4656</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68944</guid>
		</item>
		<item>
			<title>anylinkmenu not working on IE</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68942&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 13:02:29 GMT</pubDate>
			<description><![CDATA[1) Script Title: anylinkmenu not working on IE 
 
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm 
 
3) Describe problem:  
the code works fine on chrome but it makes exception on IE  
* 
var relattr = anchorobj.getAttribute("rel") 
 dropmenuid =...]]></description>
			<content:encoded><![CDATA[<div>1) Script Title: anylinkmenu not working on IE<br />
<br />
2) Script URL (on DD): <a href="http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm" target="_blank">http://www.dynamicdrive.com/dynamici...pmenuindex.htm</a><br />
<br />
3) Describe problem: <br />
the code works fine on chrome but it makes exception on IE <br />
<b><br />
var relattr = anchorobj.getAttribute(&quot;rel&quot;)<br />
 dropmenuid = relattr.replace(/\[(\w+)\]/, '')</b>  ---&gt;makes exception <br />
relattr is null .<br />
<br />
<br />
any help ?!</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=2">Dynamic Drive scripts help</category>
			<dc:creator>esraa</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68942</guid>
		</item>
		<item>
			<title>Prevent line feed in div element</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68939&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:13:11 GMT</pubDate>
			<description><![CDATA[My home page has a scroll which is placed in a div element to provide a border and background color for the scroll. The scrolling text is loaded from a text file. It's just a message I can create on my desktop which will get automatically uploaded to the server. The div containing the scroll will...]]></description>
			<content:encoded><![CDATA[<div>My home page has a scroll which is placed in a div element to provide a border and background color for the scroll. The scrolling text is loaded from a text file. It's just a message I can create on my desktop which will get automatically uploaded to the server. The div containing the scroll will get bigger depending on the length of the line of text, so I'm just trying to figure out how to suppress the line feed in this one div element. <br />
Here is the page: <a href="http://www.siftradingsystems.com/index.html" target="_blank">http://www.siftradingsystems.com/index.html</a><br />
<br />
Here is the php code which fetches the text file:<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;?php<br />
$myFile = &quot;clientFTP/marquee.txt&quot;; <br />
$fh = fopen($myFile, 'r');<br />
$marquee_text = fgets($fh);<br />
fclose($fh);<br />
?&gt;<br />
&lt;div id=&quot;marquee&quot; &gt;&lt;?=$marquee_text?&gt;&lt;/div&gt;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=8">HTML</category>
			<dc:creator>Atom</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68939</guid>
		</item>
		<item>
			<title>how to make ie read media screen?</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68938&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:03:59 GMT</pubDate>
			<description>i stuck in my new project because of the scumbag IE browser 
My new project (http://www.davejob.com/scroll) 
 
i make media screen to resize the image: 
 
Code: 
--------- 
@media screen and (min-device-width : 768px) and (max-device-width : 1024px) { 
        .bg-size{ 
			width:3072px;</description>
			<content:encoded><![CDATA[<div>i stuck in my new project because of the scumbag IE browser<br />
<a href="http://www.davejob.com/scroll" target="_blank">My new project</a><br />
<br />
i make media screen to resize the image:<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">@media screen and (min-device-width : 768px) and (max-device-width : 1024px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .bg-size{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width:3072px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
@media screen and (min-device-width : 1240px) and (max-device-width : 1360px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .bg-size{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width:3780px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
@media screen and (min-device-width : 1360px) and (max-device-width : 1440px) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; .bg-size{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width:4320px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height:2700px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }</code><hr />
</div><br />
This is the html image code<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;div style=&quot;position:absolute; z-index:1;&quot;&gt;&lt;img src=&quot;images/background-master.jpg&quot; class=&quot;<font color="Red">bg-size</font>&quot;&gt;&lt;/div&gt;</code><hr />
</div>Work in most browser except IE.<br />
<br />
Any suggestion for my problem here, thank you so much.:(</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=6">CSS</category>
			<dc:creator>davelf</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68938</guid>
		</item>
		<item>
			<title>openWYSIWYG and Facebox problem with Internet Explorer</title>
			<link>http://www.dynamicdrive.com/forums/showthread.php?t=68937&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 02:14:18 GMT</pubDate>
			<description>1) Script Title: openWYSIWYG 
 
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex16/openwysiwyg/index.htm 
 
3) Describe problem:  
 
Hi all, 
 
I use Facebox (http://www.dynamicdrive.com/dynamicindex4/facebox/index.htm) to replace the traditional window popup for openWYSIWYG...</description>
			<content:encoded><![CDATA[<div>1) Script Title: openWYSIWYG<br />
<br />
2) Script URL (on DD): <a href="http://www.dynamicdrive.com/dynamicindex16/openwysiwyg/index.htm" target="_blank">http://www.dynamicdrive.com/dynamici...iwyg/index.htm</a><br />
<br />
3) Describe problem: <br />
<br />
Hi all,<br />
<br />
I use <a href="http://www.dynamicdrive.com/dynamicindex4/facebox/index.htm" target="_blank">Facebox</a> to replace the traditional window popup for openWYSIWYG functions such as color picker, insert image, insert link... it works well with browsers like Firefox, Opera... but when I use the openWYSIWYG with Internet Explorer (6/7/8) it doesn't work.<br />
<br />
Here is the picture of the Facebox &amp; openWYSIWYG in action<br />
<br />
<img src="http://www.kirikoo.net/images/14Anonyme-20120515-040232.jpg" border="0" alt="" /><br />
<br />
From what I see the problem is that with Internet Explorer when I click on the content displayed in Facebox the mouse pointer in the parent window suddenly disappear so no action can be achieved.<br />
<br />
Thanks for any help.</div>

]]></content:encoded>
			<category domain="http://www.dynamicdrive.com/forums/forumdisplay.php?f=2">Dynamic Drive scripts help</category>
			<dc:creator>lvt</dc:creator>
			<guid isPermaLink="true">http://www.dynamicdrive.com/forums/showthread.php?t=68937</guid>
		</item>
	</channel>
</rss>

