<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: BeginningJavaScript.com  - Get the code and information about &#8216;Beginning JavaScript with DOM Scripting and Ajax&#8217;</title>
	<atom:link href="http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/</link>
	<description>Chris Heilmann - Accessibilty, Web Development and Pragmatism - can talk, will travel</description>
	<pubDate>Sun, 06 Jul 2008 19:55:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Chris</title>
		<link>http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/#comment-7669</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 18 May 2008 22:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.wait-till-i.com/?p=294#comment-7669</guid>
		<description>A good book.

However chapter 6 the PhotoListInlineSlideShow if the number of images on this goes into double figures the counter at the bottom fails to operate properly i.e. image 11 will be "110 of X" and 12 "1210 of X" I have looked at the scripting with my knowledge (intermediate at best). Is there a solution to this it would be much appreciated.

Again the general knowledge in the book however is very well explained.</description>
		<content:encoded><![CDATA[<p>A good book.</p>
<p>However chapter 6 the PhotoListInlineSlideShow if the number of images on this goes into double figures the counter at the bottom fails to operate properly i.e. image 11 will be &#8220;110 of X&#8221; and 12 &#8220;1210 of X&#8221; I have looked at the scripting with my knowledge (intermediate at best). Is there a solution to this it would be much appreciated.</p>
<p>Again the general knowledge in the book however is very well explained.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad</title>
		<link>http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/#comment-7631</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Wed, 14 May 2008 00:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.wait-till-i.com/?p=294#comment-7631</guid>
		<description>Hi Chris,

I am familiar with HTML and CSS but any other programming is new to me. After going through the first four chapters of this book I still feel completely clueless about using JavaScript. Being a beginner, are there other references I should check out first or will the book begin to tie things together with real applications of JavaScript? I appreciate your feedback as I really want to learn programming but feel a bit lost.</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>I am familiar with <span class="caps">HTML </span>and <span class="caps">CSS </span>but any other programming is new to me. After going through the first four chapters of this book I still feel completely clueless about using JavaScript. Being a beginner, are there other references I should check out first or will the book begin to tie things together with real applications of JavaScript? I appreciate your feedback as I really want to learn programming but feel a bit lost.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hehe</title>
		<link>http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/#comment-7575</link>
		<dc:creator>hehe</dc:creator>
		<pubDate>Fri, 02 May 2008 07:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.wait-till-i.com/?p=294#comment-7575</guid>
		<description>hello,i am confused on this book page 111,
for (i=0;i&#60;inputs.length;i++)
{
if(inputs[i].getAttribute('type').toLowerCase()!='submit')?
{continue;i++}
......
}
the i++ followed the continue,i don't know what's the meaning of this,i took it off,the code still runs all right,but i am confused...</description>
		<content:encoded><![CDATA[<p>hello,i am confused on this book page 111,<br />
for (i=0;i&lt;inputs.length;i++)<br />
{<br />
if(inputs[i].getAttribute(&#8217;type&#8217;).toLowerCase()!=&#8217;submit&#8217;)?<br />
{continue;i++}<br />
&#8230;&#8230;<br />
}<br />
the i++ followed the continue,i don&#8217;t know what&#8217;s the meaning of this,i took it off,the code still runs all right,but i am confused&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/#comment-7196</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 25 Feb 2008 19:42:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.wait-till-i.com/?p=294#comment-7196</guid>
		<description>The book is very clear and well written. However, there's a serious omission; much more needs to be said about the limitations imposed on Javascript by browsers. Although it's briefly touched upon at the start of the book in 'Problems and Merits', it's implied there that only people with browser security set to 'paranoid' will have problems. . .However, if I try to run the first example from the book here on this site on a totally standard installation, I get 'This website is using a scripted window . . . '
Worse, if I 'click here to allow...' I still don't get the Input window.(I'm using IE7 on Vista)
Sorry, but if the very first example doesn't work as advertised . . . . .</description>
		<content:encoded><![CDATA[<p>The book is very clear and well written. However, there&#8217;s a serious omission; much more needs to be said about the limitations imposed on Javascript by browsers. Although it&#8217;s briefly touched upon at the start of the book in &#8216;Problems and Merits&#8217;, it&#8217;s implied there that only people with browser security set to &#8216;paranoid&#8217; will have problems. . .However, if I try to run the first example from the book here on this site on a totally standard installation, I get &#8216;This website is using a scripted window . . . &#8216;<br />
Worse, if I &#8216;click here to allow&#8230;&#8217; I still don&#8217;t get the Input window.(I&#8217;m using <span class="caps">IE7 </span>on Vista)<br />
Sorry, but if the very first example doesn&#8217;t work as advertised . . . . .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asad</title>
		<link>http://www.wait-till-i.com/2006/06/26/beginningjavascriptcom-get-the-code-and-information-about-beginning-javascript-with-dom-scripting-and-ajax/#comment-6925</link>
		<dc:creator>Asad</dc:creator>
		<pubDate>Thu, 24 Jan 2008 10:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.wait-till-i.com/?p=294#comment-6925</guid>
		<description>I am using the book.
The slide show with the DOM, the image count (ie 2/4) is shown only until ten. When it reaches 11 it shows something like 110/11.

Help Please.

thank</description>
		<content:encoded><![CDATA[<p>I am using the book.<br />
The slide show with the <span class="caps">DOM, </span>the image count (ie 2/4) is shown only until ten. When it reaches 11 it shows something like 110/11.</p>
<p>Help Please.</p>
<p>thank</p>
]]></content:encoded>
	</item>
</channel>
</rss>
