<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-611</id>
	<title>Nabble - Cold Fusion - JavaScript</title>
	<updated>2007-10-09T03:39:14Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Cold-Fusion---JavaScript-f611.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Cold-Fusion---JavaScript-f611.html" />
	<subtitle type="html">This list is for discussion about Javascript issues on all browsers and environments.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-13112316</id>
	<title>Displaying SVG graph in IE</title>
	<published>2007-10-09T03:39:14Z</published>
	<updated>2007-10-09T03:39:14Z</updated>
	<author>
		<name>Nima007</name>
	</author>
	<content type="html">Hi , 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; can anybody help me in displaying the svg graphs dynamically in IE ?
&lt;br&gt;&lt;br&gt;I have created a svg file &amp;nbsp;say for example 'linechart.svg' &amp;nbsp;onload I am calling a function 
&lt;br&gt;&lt;br&gt;which EMBEDS the &amp;nbsp;linechart.svg file and draws &amp;nbsp;the graph , the &amp;nbsp;co-ordinates are stored in &amp;nbsp;arrays of array .
&lt;br&gt;&lt;br&gt;for the first time &amp;nbsp;, the first array is taken as default co-ordinates to draw the graph .
&lt;br&gt;&lt;br&gt;I have &amp;nbsp;created a combo box with list of different arrays of co-ordinates . so when user clicks on drop down 
&lt;br&gt;&lt;br&gt;box and chooses an array , then it should redraw &amp;nbsp;the graph with those values as co-ordiantes.
&lt;br&gt;&lt;br&gt;any help is appreciated
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Displaying-SVG-graph-in-IE-tp13112316p13112316.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-9452931</id>
	<title>Re: Displaying the number of characters typed in FCKeditor</title>
	<published>2007-03-13T06:00:40Z</published>
	<updated>2007-03-13T06:00:40Z</updated>
	<author>
		<name>Govindarajan</name>
	</author>
	<content type="html">//FCK Editor character validation
&lt;br&gt;&lt;br&gt;function FCKeditor_OnComplete( editorInstance )
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; if(editorInstance.Name==&amp;quot;FCKeditor1&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; 	editorInstance.Events.AttachEvent( 'OnSelectionChange', DoSomething ) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 	editorInstance.Events.AttachEvent( 'OnPaste', DoSomething ) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;var counter = 0 ;
&lt;br&gt;var excee = &amp;quot;&amp;quot;;
&lt;br&gt;var exvee=&amp;quot;&amp;quot;;
&lt;br&gt;function DoSomething( editorInstance )
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; // This is a sample function that shows in the title bar the number of times
&lt;br&gt;&amp;nbsp; &amp;nbsp; // the &amp;quot;OnSelectionChange&amp;quot; event is called.
&lt;br&gt;&amp;nbsp; &amp;nbsp; //window.document.title = editorInstance.Name + ' : ' + ( ++counter ) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; var cnt=0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; if(document.all)
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; 	cnt = editorInstance.EditorDocument.body.innerText.length;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 	excee = editorInstance.EditorDocument.body.innerHTML;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 	cnt = editorInstance.EditorDocument.body.textContent.length;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;	excee = editorInstance.EditorDocument.body.innerHTML;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; 	if(cnt &amp;gt; 150)
&lt;br&gt;&amp;nbsp; 	{
&lt;br&gt;&amp;nbsp; 		editorInstance.EditorDocument.body.innerHTML = exvee;
&lt;br&gt;&amp;nbsp; 		return false; 
&lt;br&gt;&amp;nbsp; 	}
&lt;br&gt;&amp;nbsp; 	else
&lt;br&gt;&amp;nbsp; 	{
&lt;br&gt;&amp;nbsp; 		exvee = excee;
&lt;br&gt;&amp;nbsp; 		document.opportunity.tbCnt.value = 150 - cnt;
&lt;br&gt;&amp;nbsp; 		return true;
&lt;br&gt;&amp;nbsp; 	}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; 	//alert(editorInstance.EditorDocument.body.innerText);
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Pragya Ratna wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello all,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;Is there a way I can count the number of characters typed on the FCKeditor so that I can restrict any input from exceeding the maximum characters allowed?
&lt;br&gt;&lt;br&gt;On the form containing the FCKeditor, I would also like to display the number of characters being typed so that the users know how many characters are remaining.
&lt;br&gt;&lt;br&gt;Thank you
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3105&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3105&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Displaying-the-number-of-characters-typed-in-FCKeditor-tp5724589p9452931.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-7108460</id>
	<title>Re: open new window</title>
	<published>2006-10-31T20:37:24Z</published>
	<updated>2006-10-31T20:37:24Z</updated>
	<author>
		<name>coldfusion.developer@att.net coldfusion.developer@att.net</name>
	</author>
	<content type="html">One way I've found to get a similar effect without having to open a new window is
&lt;br&gt;to use an animated layer. If you're using Dreamweaver, it will walk you though how to use an animated layer. The layer would move onto the screen, over your current page and you could put anything in it, HTML, video, flash movie and place a close button to remove/hide the layer. &amp;nbsp;It gives you a window over your Web page like a popup without triggering the popup detector. &amp;nbsp;I love it. &amp;nbsp;Best thing about it is,
&lt;br&gt;you're keeping the user on your browser/site instead of sending them off to another browser where they could forget they were evey on your site.
&lt;br&gt;&lt;br&gt;Hope this helps.
&lt;br&gt;&lt;br&gt;D
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi, i am wondering if it is possible to open a new window without a 
&lt;br&gt;&amp;gt; the browsers pop-up blocker stopping it from opening
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; the code i am using is as follows:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; window.open('newWindow.cfm');
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; but the pop-up blocker stops it from opening
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; i would appreciate any help
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; thanks
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3281&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3281&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/open-new-window-tp6621596p7108460.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6895723</id>
	<title>Re: Dynamically name form fields</title>
	<published>2006-10-19T06:26:36Z</published>
	<updated>2006-10-19T06:26:36Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">You do it exactly the same way as you are for the a11 and a12 bits.
&lt;br&gt;ie: Give each form element a unique id and then do:
&lt;br&gt;var AC = document.getElementById('cellA_'+ct).value;
&lt;br&gt;etc.
&lt;br&gt;&lt;br&gt;And if you don't like typing document.getElementById millions of
&lt;br&gt;times, just create a shortcut function:
&lt;br&gt;function elem(ent){return document.getElementById(ent);}
&lt;br&gt;&lt;br&gt;On 10/19/06, David Hannum &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6895723&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oujasper@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I need to populate the value of a dynamically generated form field name. &amp;nbsp;But wrapping in an eval() does not work (at least the way I'm doing it). &amp;nbsp;Can someone show me how to properly do this? &amp;nbsp;Everything works fine down to where I try to assign the value of &amp;quot;cellPhone&amp;quot; to the dynamically named form field (the 'eval' line).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; function putCell(ct) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var AC = eval(&amp;quot;document.CFForm_1.cellA_&amp;quot;+ct+&amp;quot;.value&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var PX = eval(&amp;quot;document.CFForm_1.cellP_&amp;quot;+ct+&amp;quot;.value&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var SX = eval(&amp;quot;document.CFForm_1.cellS_&amp;quot;+ct+&amp;quot;.value&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var cellPhone = AC+&amp;quot;.&amp;quot;+PX+&amp;quot;.&amp;quot;+SX;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;eval(&amp;quot;document.CFForm_1.document.CFForm_1.phoner_&amp;quot;+ct+&amp;quot;.value&amp;quot;) = cellPhone;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;document.getElementById('a11_'+ct).innerHTML = cellPhone;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;document.getElementById('a11_'+ct).style.visibility = 'visible';
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;document.getElementById('a12_'+ct).style.visibility = 'hidden';
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Dave
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3265&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3265&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Dynamically-name-form-fields-tp6895536p6895723.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6895536</id>
	<title>Dynamically name form fields</title>
	<published>2006-10-19T06:06:38Z</published>
	<updated>2006-10-19T06:06:38Z</updated>
	<author>
		<name>Dave Hannum</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I need to populate the value of a dynamically generated form field name. &amp;nbsp;But wrapping in an eval() does not work (at least the way I'm doing it). &amp;nbsp;Can someone show me how to properly do this? &amp;nbsp;Everything works fine down to where I try to assign the value of &amp;quot;cellPhone&amp;quot; to the dynamically named form field (the 'eval' line).
&lt;br&gt;&lt;br&gt;function putCell(ct) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var AC = eval(&amp;quot;document.CFForm_1.cellA_&amp;quot;+ct+&amp;quot;.value&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var PX = eval(&amp;quot;document.CFForm_1.cellP_&amp;quot;+ct+&amp;quot;.value&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var SX = eval(&amp;quot;document.CFForm_1.cellS_&amp;quot;+ct+&amp;quot;.value&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var cellPhone = AC+&amp;quot;.&amp;quot;+PX+&amp;quot;.&amp;quot;+SX;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; eval(&amp;quot;document.CFForm_1.document.CFForm_1.phoner_&amp;quot;+ct+&amp;quot;.value&amp;quot;) = cellPhone;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.getElementById('a11_'+ct).innerHTML = cellPhone;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.getElementById('a11_'+ct).style.visibility = 'visible';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.getElementById('a12_'+ct).style.visibility = 'hidden';	
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Dave
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3264&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3264&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Dynamically-name-form-fields-tp6895536p6895536.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6769679</id>
	<title>Claims Processing/Data Entry</title>
	<published>2006-10-11T22:15:52Z</published>
	<updated>2006-10-11T22:15:52Z</updated>
	<author>
		<name>Chris  Jameson</name>
	</author>
	<content type="html">Claims Processor/Data Entry
&lt;br&gt;We have openings available in this area earning $300.00 - $500.00 per week processing claims. We are seeking only honest, self-motivated people with a desire to work in the data entry/processing field, from the comfort of their own homes. The preferred applicants should be at least 18 years old with Internet access.
&lt;br&gt;No experience needed. 
&lt;br&gt;Desirable skills:
&lt;br&gt;Basic PC/Typing 
&lt;br&gt;Attention to detail
&lt;br&gt;Working knowledge of Microsoft Environment
&lt;br&gt;Independent work ethic
&lt;br&gt;Requirements:
&lt;br&gt;Computer with Internet access
&lt;br&gt;Valid email address
&lt;br&gt;Basic Internet Browser knowledge
&lt;br&gt;&lt;br&gt;If you fit the above description and meet the requirements please apply or forward resume to: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6769679&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tudaycanbediff@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Serious applicants ONLY, please.
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3258&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3258&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Claims-Processing-Data-Entry-tp6769679p6769679.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6622541</id>
	<title>Re: open new window</title>
	<published>2006-10-03T09:14:45Z</published>
	<updated>2006-10-03T09:14:45Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">But the whole point of pop-up blockers is to prevent you doing that.
&lt;br&gt;(because even if you have only good uses for them, there'll be evil
&lt;br&gt;people wanting to throw adverts at people using the same technique)
&lt;br&gt;&lt;br&gt;The easiest solution is probably to ask/tell users to add your website
&lt;br&gt;as an exception (which most if not all popup-blockers will allow) and
&lt;br&gt;then you can pop away to your hearts content. :)
&lt;br&gt;&lt;br&gt;On 10/3/06, Richard White &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6622541&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rwhite@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi, i am wondering if it is possible to open a new window without a the browsers pop-up blocker stopping it from opening
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; the code i am using is as follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; window.open('newWindow.cfm');
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; but the pop-up blocker stops it from opening
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; i would appreciate any help
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3241&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3241&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/open-new-window-tp6621596p6622541.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6621596</id>
	<title>open new window</title>
	<published>2006-10-03T08:28:15Z</published>
	<updated>2006-10-03T08:28:15Z</updated>
	<author>
		<name>Richard White-4</name>
	</author>
	<content type="html">Hi, i am wondering if it is possible to open a new window without a the browsers pop-up blocker stopping it from opening
&lt;br&gt;&lt;br&gt;the code i am using is as follows:
&lt;br&gt;&lt;br&gt;window.open('newWindow.cfm');
&lt;br&gt;&lt;br&gt;but the pop-up blocker stops it from opening
&lt;br&gt;&lt;br&gt;i would appreciate any help
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3239&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3239&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/open-new-window-tp6621596p6621596.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6558055</id>
	<title>RE: add only weekdays to a date</title>
	<published>2006-09-28T19:38:28Z</published>
	<updated>2006-09-28T19:38:28Z</updated>
	<author>
		<name>Jim Davis</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Jonathan Hicks [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6558055&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hicks.jon@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Wednesday, September 27, 2006 10:26 AM
&lt;br&gt;&amp;gt; To: Javascript
&lt;br&gt;&amp;gt; Subject: Re: add only weekdays to a date
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi Jim,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (I just trying put up a post, but it doesnt look it went, so im resending
&lt;br&gt;&amp;gt; it...sorry if it goes up twice)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm having trouble with the add() function. &amp;nbsp;I got the diff() function to
&lt;br&gt;&amp;gt; work correctly, but it seems like there might be a bug with the add()
&lt;br&gt;&amp;gt; function (unless i'm doing something wrong, which could be the case haha).
&lt;br&gt;&amp;gt; i'm trying to add 5 days to today's date (9/27/06). &amp;nbsp;Only business days
&lt;br&gt;&amp;gt; should make the new date be Wednesday, Oct 4. &amp;nbsp;But instead it says monday,
&lt;/div&gt;&lt;br&gt;Well... that's not suprising - that function was horribly broken. &amp;nbsp;;^)
&lt;br&gt;&lt;br&gt;Well. Maybe not &amp;quot;horribly&amp;quot; - but lordy, it weren't good.
&lt;br&gt;&lt;br&gt;I've fixed it and uploaded the new version.
&lt;br&gt;&lt;br&gt;Let me know if I've fouled up again.
&lt;br&gt;&lt;br&gt;Jim Davis
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3236&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3236&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/add-only-weekdays-to-a-date-tp6513244p6558055.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6547231</id>
	<title>Re: add only weekdays to a date</title>
	<published>2006-09-28T08:05:35Z</published>
	<updated>2006-09-28T08:05:35Z</updated>
	<author>
		<name>Jonathan Hicks</name>
	</author>
	<content type="html">After trying a few different ways, I finally sat down and just wrote out my own function to do what I wanted it to. &amp;nbsp;Below is my example code that works (as far as I know so far). &amp;nbsp;It takes the current date and adds a number of days to it (in this case, it is 10 days) and it only counts weekdays. &amp;nbsp;I didn't exclude holidays, but I assume this could be added in by using an array of dates that you must statically build. &amp;nbsp;Hope this helps someone from having to do as much searching as I did!
&lt;br&gt;&lt;br&gt;var dueDate = 10 &amp;nbsp;//number of days to add
&lt;br&gt;var daysToAdd = 0
&lt;br&gt;var mydate = new Date()
&lt;br&gt;document.write(mydate+&amp;quot;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;quot;)
&lt;br&gt;var day = mydate.getDay() 			
&lt;br&gt;dueDate = dueDate - (5-day) 
&lt;br&gt;if ((5-day) &amp;lt; dueDate || dueDate == 1) {
&lt;br&gt;&amp;nbsp; daysToAdd = (5-day) + 2 + daysToAdd
&lt;br&gt;} else { // (5-day) &amp;gt;= dueDate
&lt;br&gt;&amp;nbsp; daysToAdd = (5-day) + daysToAdd
&lt;br&gt;}
&lt;br&gt;while (dueDate != 0) {
&lt;br&gt;&amp;nbsp; var week = dueDate - 5 
&lt;br&gt;&amp;nbsp; if (week &amp;gt; 0) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; daysToAdd = 7 + daysToAdd 
&lt;br&gt;&amp;nbsp; &amp;nbsp; dueDate = dueDate - 5 
&lt;br&gt;&amp;nbsp; } else { // week &amp;lt; 0
&lt;br&gt;&amp;nbsp; &amp;nbsp; daysToAdd = (5 + week) + daysToAdd 
&lt;br&gt;&amp;nbsp; &amp;nbsp; dueDate = dueDate - (5 + week)
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;mydate.setDate(mydate.getDate() + daysToAdd)
&lt;br&gt;document.write(mydate)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;-Jon
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi, I have a funtion that adds a given amount of days (taken from the 
&lt;br&gt;&amp;gt; user) and adds that to a date to get a new date. &amp;nbsp;I need to modify it 
&lt;br&gt;&amp;gt; so that only weekdays are included when you add the days. &amp;nbsp;For example, 
&lt;br&gt;&amp;gt; if you have today's date (9/26/06) and you want to add 5 days, the 
&lt;br&gt;&amp;gt; answer should be 10/3/06 because the weekend should not be counted. &amp;nbsp;
&lt;br&gt;&amp;gt; Does anyone know how this can be done?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; var numberOfDaysToAdd = 5
&lt;br&gt;&amp;gt; var mydate1 = new Date() &amp;nbsp;
&lt;br&gt;&amp;gt; mydate1.setFullYear(2006,9,26) &amp;nbsp;
&lt;br&gt;&amp;gt; mydate1.setDate(mydate1.getDate() + numberOfDaysToAdd) 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Any help would be appreciated, 
&lt;/div&gt;Thanks!
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3233&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3233&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/add-only-weekdays-to-a-date-tp6513244p6547231.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6527880</id>
	<title>Re: add only weekdays to a date</title>
	<published>2006-09-27T08:25:42Z</published>
	<updated>2006-09-27T08:25:42Z</updated>
	<author>
		<name>Jonathan Hicks</name>
	</author>
	<content type="html">Hi Jim, 
&lt;br&gt;&lt;br&gt;(I just trying put up a post, but it doesnt look it went, so im resending it...sorry if it goes up twice)
&lt;br&gt;&lt;br&gt;I'm having trouble with the add() function. &amp;nbsp;I got the diff() function to work correctly, but it seems like there might be a bug with the add() function (unless i'm doing something wrong, which could be the case haha). &amp;nbsp;i'm trying to add 5 days to today's date (9/27/06). &amp;nbsp;Only business days should make the new date be Wednesday, Oct 4. &amp;nbsp;But instead it says monday, Oct 2. &amp;nbsp;So it seems that it still is counting weekends. &amp;nbsp;If I put in to add 6 days however, the function works correctly. &amp;nbsp;It seems that it still counts the weekends when you add certain amounts of days. &amp;nbsp;Do you have any idea how this could be fixed?
&lt;br&gt;&lt;br&gt;var numberOfDaysToAdd = 5
&lt;br&gt;var mydate = new Date()
&lt;br&gt;document.write(&amp;quot;&amp;lt;br&amp;gt;&amp;quot;+mydate+&amp;quot;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;quot;)
&lt;br&gt;mydate.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;, true);
&lt;br&gt;document.write(mydate)
&lt;br&gt;&lt;br&gt;Thanks for the help, Jon
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;My Date Extension Library does this.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D&lt;/a&gt;&lt;br&gt;&amp;gt;ateExtensions/Index.cfm
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Both the &amp;quot;add()&amp;quot; and &amp;quot;diff()&amp;quot; methods support &amp;quot;businessdays&amp;quot; as a DatePart
&lt;br&gt;&amp;gt;which should (if they're no bugs) do what you want.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;After importing the library your sample code would become:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;var numberOfDaysToAdd = 5
&lt;br&gt;&amp;gt;var mydate1 = new Date(2006,9,26)
&lt;br&gt;&amp;gt;mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;, true);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Note that the &amp;quot;true&amp;quot; at the end is needed to change the date &amp;quot;in place&amp;quot; (a
&lt;br&gt;&amp;gt;destructive operation). &amp;nbsp;If left out (or false) the function would not
&lt;br&gt;&amp;gt;change the original date but would rather return the new date as in:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;myNewDate = mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;The library also provides CF-like dateFormat(), timeFormat() and compare()
&lt;br&gt;&amp;gt;functions as well as support for common ISO8601 dates.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Hope this helps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Jim Davis
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3226&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3226&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/add-only-weekdays-to-a-date-tp6513244p6527880.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6553342</id>
	<title>Re: add only weekdays to a date</title>
	<published>2006-09-27T06:52:53Z</published>
	<updated>2006-09-27T06:52:53Z</updated>
	<author>
		<name>Jonathan Hicks</name>
	</author>
	<content type="html">Hi Jim,
&lt;br&gt;&lt;br&gt;I'm trying to use your code, but so far it's not working for me. &amp;nbsp;Can you tell me if I'm missing something? &amp;nbsp;I just tried a quick test using my example, first printing out the current date and then the date after adding 5 days. &amp;nbsp;Today is the Wed, the 27, so adding 5 business days to that should make it Wednesday, Oct 4....but it comes back with monday, Oct 2... so that means it's still looking at the weekend! &amp;nbsp;Here's my code: &amp;nbsp;
&lt;br&gt;&lt;br&gt;var numberOfDaysToAdd = 5
&lt;br&gt;var mydate1 = new Date()
&lt;br&gt;document.write(mydate1+&amp;quot;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;quot;)
&lt;br&gt;mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;, true);
&lt;br&gt;document.write(mydate1)
&lt;br&gt;&lt;br&gt;What am I doing wrong? &amp;nbsp;Thanks, Jon
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;My Date Extension Library does this.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D&lt;/a&gt;&lt;br&gt;&amp;gt;ateExtensions/Index.cfm
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Both the &amp;quot;add()&amp;quot; and &amp;quot;diff()&amp;quot; methods support &amp;quot;businessdays&amp;quot; as a DatePart
&lt;br&gt;&amp;gt;which should (if they're no bugs) do what you want.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;After importing the library your sample code would become:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;var numberOfDaysToAdd = 5
&lt;br&gt;&amp;gt;var mydate1 = new Date(2006,9,26)
&lt;br&gt;&amp;gt;mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;, true);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Note that the &amp;quot;true&amp;quot; at the end is needed to change the date &amp;quot;in place&amp;quot; (a
&lt;br&gt;&amp;gt;destructive operation). &amp;nbsp;If left out (or false) the function would not
&lt;br&gt;&amp;gt;change the original date but would rather return the new date as in:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;myNewDate = mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;The library also provides CF-like dateFormat(), timeFormat() and compare()
&lt;br&gt;&amp;gt;functions as well as support for common ISO8601 dates.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Hope this helps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Jim Davis
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3235&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3235&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/add-only-weekdays-to-a-date-tp6513244p6553342.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6514827</id>
	<title>RE: add only weekdays to a date</title>
	<published>2006-09-26T14:14:58Z</published>
	<updated>2006-09-26T14:14:58Z</updated>
	<author>
		<name>Jim Davis</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Jonathan Hicks [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6514827&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hicks.jon@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Tuesday, September 26, 2006 2:41 PM
&lt;br&gt;&amp;gt; To: Javascript
&lt;br&gt;&amp;gt; Subject: add only weekdays to a date
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi, I have a funtion that adds a given amount of days (taken from the
&lt;br&gt;&amp;gt; user) and adds that to a date to get a new date. &amp;nbsp;I need to modify it so
&lt;br&gt;&amp;gt; that only weekdays are included when you add the days. &amp;nbsp;For example, if
&lt;br&gt;&amp;gt; you have today's date (9/26/06) and you want to add 5 days, the answer
&lt;br&gt;&amp;gt; should be 10/3/06 because the weekend should not be counted. &amp;nbsp;Does anyone
&lt;br&gt;&amp;gt; know how this can be done?
&lt;/div&gt;&lt;br&gt;My Date Extension Library does this.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.depressedpress.com/Content/Development/JavaScript/Extensions/DP_D&lt;/a&gt;&lt;br&gt;ateExtensions/Index.cfm
&lt;br&gt;&lt;br&gt;Both the &amp;quot;add()&amp;quot; and &amp;quot;diff()&amp;quot; methods support &amp;quot;businessdays&amp;quot; as a DatePart
&lt;br&gt;which should (if they're no bugs) do what you want.
&lt;br&gt;&lt;br&gt;After importing the library your sample code would become:
&lt;br&gt;&lt;br&gt;var numberOfDaysToAdd = 5
&lt;br&gt;var mydate1 = new Date(2006,9,26)
&lt;br&gt;mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;, true);
&lt;br&gt;&lt;br&gt;Note that the &amp;quot;true&amp;quot; at the end is needed to change the date &amp;quot;in place&amp;quot; (a
&lt;br&gt;destructive operation). &amp;nbsp;If left out (or false) the function would not
&lt;br&gt;change the original date but would rather return the new date as in:
&lt;br&gt;&lt;br&gt;myNewDate = mydate1.add(numberOfDaysToAdd, &amp;quot;businessdays&amp;quot;);
&lt;br&gt;&lt;br&gt;The library also provides CF-like dateFormat(), timeFormat() and compare()
&lt;br&gt;functions as well as support for common ISO8601 dates.
&lt;br&gt;&lt;br&gt;Hope this helps.
&lt;br&gt;&lt;br&gt;Jim Davis
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3223&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3223&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/add-only-weekdays-to-a-date-tp6513244p6514827.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6513244</id>
	<title>add only weekdays to a date</title>
	<published>2006-09-26T12:41:12Z</published>
	<updated>2006-09-26T12:41:12Z</updated>
	<author>
		<name>Jonathan Hicks</name>
	</author>
	<content type="html">Hi, I have a funtion that adds a given amount of days (taken from the user) and adds that to a date to get a new date. &amp;nbsp;I need to modify it so that only weekdays are included when you add the days. &amp;nbsp;For example, if you have today's date (9/26/06) and you want to add 5 days, the answer should be 10/3/06 because the weekend should not be counted. &amp;nbsp;Does anyone know how this can be done?
&lt;br&gt;&lt;br&gt;var numberOfDaysToAdd = 5
&lt;br&gt;var mydate1 = new Date() &amp;nbsp;
&lt;br&gt;mydate1.setFullYear(2006,9,26) &amp;nbsp;
&lt;br&gt;mydate1.setDate(mydate1.getDate() + numberOfDaysToAdd) 
&lt;br&gt;&lt;br&gt;Any help would be appreciated, Thanks!
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3222&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3222&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/add-only-weekdays-to-a-date-tp6513244p6513244.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6247325</id>
	<title>Re: Slider component?</title>
	<published>2006-09-11T07:59:46Z</published>
	<updated>2006-09-11T07:59:46Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">Intertestingly, so does the download of MXAJAX (on our dev server at
&lt;br&gt;least) so something probably got messed up on the indiankey demo page.
&lt;br&gt;&lt;br&gt;Anyways, script.aculo.us is pretty awesome.
&lt;br&gt;&lt;br&gt;On 9/11/06, Peter Boughton &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6247325&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;boughtonp@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Nah, IE is great; without it our jobs would be far too easy. ;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks, that one does work with IE and FF.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Peter
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;I hate IE 6 more and more deeply with every passing day.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;I'll let Arjun know that the slider components in the 0.1 release are
&lt;br&gt;&amp;gt; &amp;gt;broken in IE6.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;The latest script.aculo.us works ok in IE so dropping that in should be fine:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://wiki.script.aculo.us/scriptaculous/show/SliderDemo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.script.aculo.us/scriptaculous/show/SliderDemo&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;On 9/11/06, Peter Boughton &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6247325&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;boughtonp@...&lt;/a&gt;&amp;gt; wrote:
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3178&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3178&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6247325.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6247042</id>
	<title>Re: Slider component?</title>
	<published>2006-09-11T07:45:33Z</published>
	<updated>2006-09-11T07:45:33Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">I hate IE 6 more and more deeply with every passing day.
&lt;br&gt;&lt;br&gt;I'll let Arjun know that the slider components in the 0.1 release are
&lt;br&gt;broken in IE6.
&lt;br&gt;&lt;br&gt;The latest script.aculo.us works ok in IE so dropping that in should be fine:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://wiki.script.aculo.us/scriptaculous/show/SliderDemo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.script.aculo.us/scriptaculous/show/SliderDemo&lt;/a&gt;&lt;br&gt;&lt;br&gt;On 9/11/06, Peter Boughton &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6247042&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;boughtonp@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Same here - works okay in FF1.5, but in IE6 it doesn't appear to work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Peter
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; This should meet all of your requirements:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Does it works for you under IE 6? It's all fine in FireFox here, but badly
&lt;br&gt;&amp;gt; &amp;gt;broken in IE 6. A I alone?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;----------------------------
&lt;br&gt;&amp;gt; &amp;gt;Massimo Foti
&lt;br&gt;&amp;gt; &amp;gt;Tools for ColdFusion and Dreamweaver developers:
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://www.massimocorner.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.massimocorner.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;----------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3176&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3176&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6247042.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6247143</id>
	<title>Re: Slider component?</title>
	<published>2006-09-11T07:42:41Z</published>
	<updated>2006-09-11T07:42:41Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">Nah, IE is great; without it our jobs would be far too easy. ;)
&lt;br&gt;&lt;br&gt;Thanks, that one does work with IE and FF.
&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Peter
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;I hate IE 6 more and more deeply with every passing day.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I'll let Arjun know that the slider components in the 0.1 release are
&lt;br&gt;&amp;gt;broken in IE6.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;The latest script.aculo.us works ok in IE so dropping that in should be fine:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://wiki.script.aculo.us/scriptaculous/show/SliderDemo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.script.aculo.us/scriptaculous/show/SliderDemo&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;On 9/11/06, Peter Boughton &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6247143&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;boughtonp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3177&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3177&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6247143.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6246811</id>
	<title>Re: Slider component?</title>
	<published>2006-09-11T07:24:00Z</published>
	<updated>2006-09-11T07:24:00Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">Same here - works okay in FF1.5, but in IE6 it doesn't appear to work.
&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Peter
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; This should meet all of your requirements:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Does it works for you under IE 6? It's all fine in FireFox here, but badly 
&lt;br&gt;&amp;gt;broken in IE 6. A I alone?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;----------------------------
&lt;br&gt;&amp;gt;Massimo Foti
&lt;br&gt;&amp;gt;Tools for ColdFusion and Dreamweaver developers:
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://www.massimocorner.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.massimocorner.com&lt;/a&gt;&lt;br&gt;&amp;gt;----------------------------
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3175&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3175&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6246811.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6246124</id>
	<title>Re: Slider component?</title>
	<published>2006-09-11T06:55:29Z</published>
	<updated>2006-09-11T06:55:29Z</updated>
	<author>
		<name>Massimo Foti-2</name>
	</author>
	<content type="html">&amp;gt; This should meet all of your requirements:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&lt;/a&gt;&lt;br&gt;&lt;br&gt;Does it works for you under IE 6? It's all fine in FireFox here, but badly 
&lt;br&gt;broken in IE 6. A I alone?
&lt;br&gt;&lt;br&gt;----------------------------
&lt;br&gt;Massimo Foti
&lt;br&gt;Tools for ColdFusion and Dreamweaver developers:
&lt;br&gt;&lt;a href=&quot;http://www.massimocorner.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.massimocorner.com&lt;/a&gt;&lt;br&gt;----------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3174&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3174&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6246124.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6245828</id>
	<title>Re: Slider component?</title>
	<published>2006-09-11T06:36:11Z</published>
	<updated>2006-09-11T06:36:11Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">This should meet all of your requirements:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indiankey.com/mxajax/examples/mxSlider1.cfm&lt;/a&gt;&lt;br&gt;&lt;br&gt;It's part of MXAJAX:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.indiankey.com/mxajax/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.indiankey.com/mxajax/&lt;/a&gt;&lt;br&gt;&lt;br&gt;On 9/11/06, Peter Boughton &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=6245828&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;boughtonp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hello. I need a simple slider/scrollbar component, similar to CFSLIDER but it ideally needs to provide a value without submitting a form (ie: with an onchange and/or onblur function call), and it can't really use Flash/Flex - I need a HTML-based solution.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Does anyone here have any suggestions or recommendations for such a component?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Peter
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3173&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3173&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6245828.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-6245280</id>
	<title>Slider component?</title>
	<published>2006-09-11T05:48:28Z</published>
	<updated>2006-09-11T05:48:28Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">Hello. I need a simple slider/scrollbar component, similar to CFSLIDER but it ideally needs to provide a value without submitting a form (ie: with an onchange and/or onblur function call), and it can't really use Flash/Flex - I need a HTML-based solution.
&lt;br&gt;&lt;br&gt;Does anyone here have any suggestions or recommendations for such a component?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Peter
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3172&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3172&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Slider-component--tp6245280p6245280.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5864610</id>
	<title>Highlighting values inside Textarea</title>
	<published>2006-08-18T00:26:45Z</published>
	<updated>2006-08-18T00:26:45Z</updated>
	<author>
		<name>Anbu  Selvan</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;I want to highlight some values inside &amp;lt;textarea&amp;gt;. Similar kind of thing when you click on the spell check in the emails you would be highlighted with the wrong words.
&lt;br&gt;&lt;br&gt;&amp;nbsp;I want to do it through the JavaScript. 
&lt;br&gt;&lt;br&gt;Could any one please guide me.. 
&lt;br&gt;&lt;br&gt;Thanks in advanceâ¦.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Anbu
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3129&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3129&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Highlighting-values-inside-Textarea-tp5864610p5864610.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5802122</id>
	<title>Re: Displaying the number of characters typed in FCKeditor</title>
	<published>2006-08-14T10:53:30Z</published>
	<updated>2006-08-14T10:53:30Z</updated>
	<author>
		<name>Harry de Voil</name>
	</author>
	<content type="html">Hi Pragya,
&lt;br&gt;&lt;br&gt;Quoted from the HTML samples provided with FCKeditor:
&lt;br&gt;&lt;br&gt;[START OF CODE]
&lt;br&gt;&lt;br&gt;function getLength(){
&lt;br&gt;&lt;br&gt;// This functions shows that you can interact directly with the editor area
&lt;br&gt;// DOM. In this way you have the freedom to do anything you want with it.
&lt;br&gt;&lt;br&gt;// Get the editor instance that we want to interact with.
&lt;br&gt;var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ;
&lt;br&gt;&lt;br&gt;// Get the Editor Area DOM (Document object).
&lt;br&gt;var oDOM = oEditor.EditorDocument ;
&lt;br&gt;&lt;br&gt;var iLength ;
&lt;br&gt;&lt;br&gt;// The are two diffent ways to get the text (without HTML markups).
&lt;br&gt;// It is browser specific.
&lt;br&gt;&lt;br&gt;if ( document.all ) // If Internet Explorer.
&lt;br&gt;{
&lt;br&gt;iLength = oDOM.body.innerText.length ;
&lt;br&gt;}
&lt;br&gt;else // If Gecko.
&lt;br&gt;{
&lt;br&gt;var r = oDOM.createRange() ;
&lt;br&gt;r.selectNodeContents( oDOM.body ) ;
&lt;br&gt;iLength = r.toString().length ;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;alert( 'Actual text length (without HTML markups): ' + iLength + '
&lt;br&gt;characters' ) ;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;[END OF CODE]
&lt;br&gt;&lt;br&gt;So this is the code you will need to find out the length of the text.
&lt;br&gt;&lt;br&gt;As for doing it as the result of user interaction ie. to update it as
&lt;br&gt;the user types, I couldn't find anything useful on the SourceForge
&lt;br&gt;forums for FCKeditor, but there must be some way...can anyone else
&lt;br&gt;help? We need some kind of 'onChange' handler.
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3125&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3125&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Displaying-the-number-of-characters-typed-in-FCKeditor-tp5724589p5802122.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5724589</id>
	<title>Displaying the number of characters typed in FCKeditor</title>
	<published>2006-08-09T06:21:39Z</published>
	<updated>2006-08-09T06:21:39Z</updated>
	<author>
		<name>Pragya Ratna</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;Is there a way I can count the number of characters typed on the FCKeditor so that I can restrict any input from exceeding the maximum characters allowed?
&lt;br&gt;&lt;br&gt;On the form containing the FCKeditor, I would also like to display the number of characters being typed so that the users know how many characters are remaining.
&lt;br&gt;&lt;br&gt;Thank you
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3105&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/message.cfm/messageid:3105&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Javascript/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Displaying-the-number-of-characters-typed-in-FCKeditor-tp5724589p5724589.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5102049</id>
	<title>Re: Text only validation</title>
	<published>2006-06-29T06:44:19Z</published>
	<updated>2006-06-29T06:44:19Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">I found my solution and let me say that this is a great example of how to help newbie in communities such as this one - samples of syntax.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.codingforums.com/archive/index.php?t-10374.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.codingforums.com/archive/index.php?t-10374.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Enjoy.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;On 6/27/06, Torrent Girl &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5102049&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; isn't that what this list is for to get help?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I searched google...I always try to find a solution before posting
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Congratulations!
&lt;br&gt;&amp;gt;I wish more people were like you!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-- 
&lt;br&gt;&amp;gt;//f3l
&lt;br&gt;&amp;gt;there seems to be quite a debate, on wether linux is a toaster, or a
&lt;br&gt;&amp;gt;unix clone...
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2905&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2905&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5102049.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5102044</id>
	<title>Re: Text only validation</title>
	<published>2006-06-29T06:44:19Z</published>
	<updated>2006-06-29T06:44:19Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">I found my solution and let me say that this is a great example of how to help newbie in communities such as this one - samples of syntax.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.codingforums.com/archive/index.php?t-10374.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.codingforums.com/archive/index.php?t-10374.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Enjoy.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;On 6/27/06, Torrent Girl &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5102044&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; isn't that what this list is for to get help?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I searched google...I always try to find a solution before posting
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Congratulations!
&lt;br&gt;&amp;gt;I wish more people were like you!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-- 
&lt;br&gt;&amp;gt;//f3l
&lt;br&gt;&amp;gt;there seems to be quite a debate, on wether linux is a toaster, or a
&lt;br&gt;&amp;gt;unix clone...
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2904&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2904&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5102044.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5090345</id>
	<title>Re: Text only validation</title>
	<published>2006-06-28T12:41:04Z</published>
	<updated>2006-06-28T12:41:04Z</updated>
	<author>
		<name>felipevaldez</name>
	</author>
	<content type="html">On 6/27/06, Torrent Girl &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5090345&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; isn't that what this list is for to get help?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I searched google...I always try to find a solution before posting
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Congratulations!
&lt;br&gt;I wish more people were like you!
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;//f3l
&lt;br&gt;there seems to be quite a debate, on wether linux is a toaster, or a
&lt;br&gt;unix clone...
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2899&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2899&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5090345.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5078309</id>
	<title>Re: Text only validation</title>
	<published>2006-06-27T22:40:08Z</published>
	<updated>2006-06-27T22:40:08Z</updated>
	<author>
		<name>Massimo Foti-2</name>
	</author>
	<content type="html">You may try this library:
&lt;br&gt;&lt;a href=&quot;http://www.massimocorner.com/validator/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.massimocorner.com/validator/&lt;/a&gt;&lt;br&gt;&lt;br&gt;See the &amp;quot;pattern&amp;quot; feature:
&lt;br&gt;&lt;a href=&quot;http://www.massimocorner.com/validator/reference/index.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.massimocorner.com/validator/reference/index.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------- &amp;nbsp;
&lt;br&gt;Massimo Foti
&lt;br&gt;Tools for ColdFusion and Dreamweaver developers:
&lt;br&gt;&lt;a href=&quot;http://www.massimocorner.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.massimocorner.com&lt;/a&gt;&lt;br&gt;---------------------------- &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2897&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2897&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5078309.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5077826</id>
	<title>Re: Text only validation</title>
	<published>2006-06-27T21:11:35Z</published>
	<updated>2006-06-27T21:11:35Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">isn't that what this list is for to get help?
&lt;br&gt;&lt;br&gt;I searched google...I always try to find a solution before posting
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;On 6/27/06, Larry Juncker &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5077826&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;junckerl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I LOVE IT when people give simple answer without giving an answer.......
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I *love* it when people give me pointers to a solution, instead of doing my
&lt;br&gt;&amp;gt;homework for me.
&lt;br&gt;&amp;gt;I also *love* using google, instead of bugging other people @
&lt;br&gt;&amp;gt;javascript_official.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Try this to get what you want for your regex
&lt;br&gt;&amp;gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2896&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2896&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5077826.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5074146</id>
	<title>Re: Text only validation</title>
	<published>2006-06-27T15:14:28Z</published>
	<updated>2006-06-27T15:14:28Z</updated>
	<author>
		<name>felipevaldez</name>
	</author>
	<content type="html">On 6/27/06, Larry Juncker &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5074146&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;junckerl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I LOVE IT when people give simple answer without giving an answer.......
&lt;br&gt;&lt;br&gt;&lt;br&gt;I *love* it when people give me pointers to a solution, instead of doing my
&lt;br&gt;homework for me.
&lt;br&gt;I also *love* using google, instead of bugging other people @
&lt;br&gt;javascript_official.
&lt;br&gt;&lt;br&gt;Try this to get what you want for your regex
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Value Meaning
&lt;br&gt;&amp;gt; [:digit:] Only the digits 0 to 9
&lt;br&gt;&amp;gt; [:alnum:] Any alphanumeric character 0 to 9 OR A to Z or a to z.
&lt;br&gt;&amp;gt; [:alpha:] Any alpha character A to Z or a to z.
&lt;br&gt;&amp;gt; [:blank:] Space and TAB characters only.
&lt;br&gt;&amp;gt; [:xdigit:] .
&lt;br&gt;&amp;gt; [:punct:] Punctuation symbols . , &amp;quot; ' ? ! ; :
&lt;br&gt;&amp;gt; [:print:] Any printable character.
&lt;br&gt;&amp;gt; [:space:] Any space characters.
&lt;br&gt;&amp;gt; [:graph:] .
&lt;br&gt;&amp;gt; [:upper:] Any alpha character A to Z.
&lt;br&gt;&amp;gt; [:lower:] Any alpha character a to z.
&lt;br&gt;&amp;gt; [:cntrl:] .
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; There is a pretty good User Expression - User Gudie at this address
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.zytrax.com/tech/web/regex.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.zytrax.com/tech/web/regex.htm&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: James Holmes [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5074146&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;james.holmes@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Monday, June 26, 2006 11:10 PM
&lt;br&gt;&amp;gt; To: Javascript
&lt;br&gt;&amp;gt; Subject: Re: Text only validation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can use regular expressions to do this kind of validation.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 6/27/06, Torrent Girl &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5074146&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hello All
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have found TONS of scripts that will require a text field to be
&lt;br&gt;&amp;gt; numbers
&lt;br&gt;&amp;gt; only.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I am looking for one that will require a fields to except letters only.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Does anyone know of one?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; CFAJAX docs and other useful articles:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://jr-holmes.coldfusionjournal.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jr-holmes.coldfusionjournal.com/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2894&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2894&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5074146.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5063707</id>
	<title>RE: Text only validation</title>
	<published>2006-06-27T04:55:06Z</published>
	<updated>2006-06-27T04:55:06Z</updated>
	<author>
		<name>Larry Juncker</name>
	</author>
	<content type="html">I LOVE IT when people give simple answer without giving an answer.......
&lt;br&gt;&lt;br&gt;Try this to get what you want for your regex
&lt;br&gt;&lt;br&gt;Value Meaning 
&lt;br&gt;[:digit:] Only the digits 0 to 9 
&lt;br&gt;[:alnum:] Any alphanumeric character 0 to 9 OR A to Z or a to z. 
&lt;br&gt;[:alpha:] Any alpha character A to Z or a to z. 
&lt;br&gt;[:blank:] Space and TAB characters only. 
&lt;br&gt;[:xdigit:] . 
&lt;br&gt;[:punct:] Punctuation symbols . , &amp;quot; ' ? ! ; : 
&lt;br&gt;[:print:] Any printable character. 
&lt;br&gt;[:space:] Any space characters. 
&lt;br&gt;[:graph:] . 
&lt;br&gt;[:upper:] Any alpha character A to Z. 
&lt;br&gt;[:lower:] Any alpha character a to z. 
&lt;br&gt;[:cntrl:] . 
&lt;br&gt;&lt;br&gt;There is a pretty good User Expression - User Gudie at this address
&lt;br&gt;&lt;a href=&quot;http://www.zytrax.com/tech/web/regex.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.zytrax.com/tech/web/regex.htm&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: James Holmes [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5063707&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;james.holmes@...&lt;/a&gt;] 
&lt;br&gt;Sent: Monday, June 26, 2006 11:10 PM
&lt;br&gt;To: Javascript
&lt;br&gt;Subject: Re: Text only validation
&lt;br&gt;&lt;br&gt;You can use regular expressions to do this kind of validation.
&lt;br&gt;&lt;br&gt;On 6/27/06, Torrent Girl &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5063707&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hello All
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have found TONS of scripts that will require a text field to be numbers
&lt;br&gt;only.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am looking for one that will require a fields to except letters only.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Does anyone know of one?
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://jr-holmes.coldfusionjournal.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jr-holmes.coldfusionjournal.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2887&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2887&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5063707.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5059473</id>
	<title>Re: Text only validation</title>
	<published>2006-06-26T22:09:39Z</published>
	<updated>2006-06-26T22:09:39Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">You can use regular expressions to do this kind of validation.
&lt;br&gt;&lt;br&gt;On 6/27/06, Torrent Girl &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5059473&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hello All
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have found TONS of scripts that will require a text field to be numbers only.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am looking for one that will require a fields to except letters only.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Does anyone know of one?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://jr-holmes.coldfusionjournal.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jr-holmes.coldfusionjournal.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2880&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2880&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5059473.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5059301</id>
	<title>Text only validation</title>
	<published>2006-06-26T21:41:12Z</published>
	<updated>2006-06-26T21:41:12Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">Hello All
&lt;br&gt;&lt;br&gt;I have found TONS of scripts that will require a text field to be numbers only.
&lt;br&gt;&lt;br&gt;I am looking for one that will require a fields to except letters only.
&lt;br&gt;&lt;br&gt;Does anyone know of one?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;tGirl
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2879&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2879&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Text-only-validation-tp5059301p5059301.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-5059229</id>
	<title>Re: Applying JS to dynamically created vars</title>
	<published>2006-06-26T21:30:48Z</published>
	<updated>2006-06-26T21:30:48Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">Here is the code I ended up with
&lt;br&gt;&lt;br&gt;function restoreDefaultValues(obj) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var getOriginalValue = parseInt(obj.name.substr(7, 2));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (obj.options[ obj.selectedIndex ].value != '') {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (var i = 1; i&amp;lt;5; i++) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var makeObj = 'Company' + eval(getOriginalValue + i);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.getElementById( makeObj ).selectedIndex = 1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Any ideas on how to calculate dynamic form fields?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;You just loop over the form elements. In other words, use the form's number
&lt;br&gt;&amp;gt;of elements as your index and then use logic to determine what type of
&lt;br&gt;&amp;gt;element it is. Then you just validate them accordingly. Here is an example
&lt;br&gt;&amp;gt;using radio elements:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;script&amp;gt;
&lt;br&gt;&amp;gt;function checkform(obj_input) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;var checked = 0;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;for (var i=0; i&amp;lt;obj_input.length; i++) {
&lt;br&gt;&amp;gt;		if(obj_input.elements[i].type == 'radio') { 
&lt;br&gt;&amp;gt;			if(obj_input.elements[i].checked == true) {
&lt;br&gt;&amp;gt;				checked++;
&lt;br&gt;&amp;gt;				break;
&lt;br&gt;&amp;gt;			}
&lt;br&gt;&amp;gt;		} 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; if (checked == 0) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert(&amp;quot;you did not check a radio button&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return false;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; return true;
&lt;br&gt;&amp;gt;}
&lt;br&gt;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;form action=&amp;quot;&amp;quot; method=&amp;quot;post&amp;quot; onsubmit=&amp;quot;return checkform(this)&amp;quot;
&lt;br&gt;&amp;gt;name=&amp;quot;theform&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;arad&amp;quot; value=&amp;quot;true&amp;quot;&amp;gt;&amp;lt;input type=&amp;quot;radio&amp;quot;
&lt;br&gt;&amp;gt;name=&amp;quot;arad&amp;quot;value=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;atest&amp;quot; size=&amp;quot;10&amp;quot;&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;/form&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Warmest Regards,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;Phillip B. Holmes
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://phillipholmes.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phillipholmes.com&lt;/a&gt;&lt;br&gt;&amp;gt;214-995-6175 (cell)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-----Original Message-----
&lt;br&gt;&amp;gt;From: Torrent Girl [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=5059229&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt;Sent: Wednesday, June 14, 2006 8:35 PM
&lt;br&gt;&amp;gt;To: Javascript
&lt;br&gt;&amp;gt;Subject: Applying JS to dynamically created vars
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Hello
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I need help with an issue.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I am creating dynamically generated form fields so there can be 10 or 20 or
&lt;br&gt;&amp;gt;30 and so on (in groups of 10, and up to 50)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I need to apply javascript validation to those fields.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;My question is how can I predict the number of fields there will be?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I need to do things such as this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;If field1 = &amp;quot;Null&amp;quot;, Set field2, 3, 4, 5 to &amp;quot;NULL&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Thank you in advance for your help and I have a AM deadline ;)
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2878&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2878&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Applying-JS-to-dynamically-created-vars-tp4875952p5059229.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-4884558</id>
	<title>Re: Applying JS to dynamically created vars</title>
	<published>2006-06-15T09:04:48Z</published>
	<updated>2006-06-15T09:04:48Z</updated>
	<author>
		<name>Torrent Girl</name>
	</author>
	<content type="html">Ok thanks
&lt;br&gt;&lt;br&gt;I'll take a look and see how I can implement it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;You just loop over the form elements. In other words, use the form's number
&lt;br&gt;&amp;gt;of elements as your index and then use logic to determine what type of
&lt;br&gt;&amp;gt;element it is. Then you just validate them accordingly. Here is an example
&lt;br&gt;&amp;gt;using radio elements:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;script&amp;gt;
&lt;br&gt;&amp;gt;function checkform(obj_input) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;var checked = 0;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;for (var i=0; i&amp;lt;obj_input.length; i++) {
&lt;br&gt;&amp;gt;		if(obj_input.elements[i].type == 'radio') { 
&lt;br&gt;&amp;gt;			if(obj_input.elements[i].checked == true) {
&lt;br&gt;&amp;gt;				checked++;
&lt;br&gt;&amp;gt;				break;
&lt;br&gt;&amp;gt;			}
&lt;br&gt;&amp;gt;		} 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; if (checked == 0) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert(&amp;quot;you did not check a radio button&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return false;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; return true;
&lt;br&gt;&amp;gt;}
&lt;br&gt;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;form action=&amp;quot;&amp;quot; method=&amp;quot;post&amp;quot; onsubmit=&amp;quot;return checkform(this)&amp;quot;
&lt;br&gt;&amp;gt;name=&amp;quot;theform&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;arad&amp;quot; value=&amp;quot;true&amp;quot;&amp;gt;&amp;lt;input type=&amp;quot;radio&amp;quot;
&lt;br&gt;&amp;gt;name=&amp;quot;arad&amp;quot;value=&amp;quot;false&amp;quot;&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;atest&amp;quot; size=&amp;quot;10&amp;quot;&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;lt;/form&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Warmest Regards,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;Phillip B. Holmes
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://phillipholmes.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phillipholmes.com&lt;/a&gt;&lt;br&gt;&amp;gt;214-995-6175 (cell)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-----Original Message-----
&lt;br&gt;&amp;gt;From: Torrent Girl [mailto:&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=4884558&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;torrentgirl@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt;Sent: Wednesday, June 14, 2006 8:35 PM
&lt;br&gt;&amp;gt;To: Javascript
&lt;br&gt;&amp;gt;Subject: Applying JS to dynamically created vars
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Hello
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I need help with an issue.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I am creating dynamically generated form fields so there can be 10 or 20 or
&lt;br&gt;&amp;gt;30 and so on (in groups of 10, and up to 50)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I need to apply javascript validation to those fields.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;My question is how can I predict the number of fields there will be?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I need to do things such as this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;If field1 = &amp;quot;Null&amp;quot;, Set field2, 3, 4, 5 to &amp;quot;NULL&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Thank you in advance for your help and I have a AM deadline ;)
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:33:2744&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:33:2744&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/33&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:33&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.33&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Applying-JS-to-dynamically-created-vars-tp4875952p4884558.html" />
</entry>

</feed>
