<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Step 7 &#8211; The LMSGetValue() Function</title>
	<atom:link href="http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/</link>
	<description>A Very Simple SCORM Interface</description>
	<lastBuildDate>Sun, 02 Oct 2011 18:07:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Khoi Legend</title>
		<link>http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/comment-page-1/#comment-42</link>
		<dc:creator>Khoi Legend</dc:creator>
		<pubDate>Fri, 20 Nov 2009 21:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.vsscorm.net/?p=174#comment-42</guid>
		<description>Cool, just thought I&#039;d give some feedback. I&#039;ve enjoyed your articles thus far and thought I could contribute.

Btw .. I did try both escape and encodeURI in your code and since its for such a limited range of varname strings, they both tested successfully. Looking forward to the rest of your articles.</description>
		<content:encoded><![CDATA[<p>Cool, just thought I&#8217;d give some feedback. I&#8217;ve enjoyed your articles thus far and thought I could contribute.</p>
<p>Btw .. I did try both escape and encodeURI in your code and since its for such a limited range of varname strings, they both tested successfully. Looking forward to the rest of your articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Addison</title>
		<link>http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/comment-page-1/#comment-41</link>
		<dc:creator>Steve Addison</dc:creator>
		<pubDate>Fri, 20 Nov 2009 20:19:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.vsscorm.net/?p=174#comment-41</guid>
		<description>I&#039;ll have to look into this since &lt;a href=&quot;https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/encodeURI&quot; rel=&quot;nofollow&quot;&gt;the encodeURI documentation&lt;/a&gt; seems to suggest that it might be browser dependent. Thanks for the suggestion but, for the time being, I&#039;m going to stuck with the function that I have since a) it&#039;s working, and b) I have other things to worry about! :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ll have to look into this since <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Functions/encodeURI" rel="nofollow">the encodeURI documentation</a> seems to suggest that it might be browser dependent. Thanks for the suggestion but, for the time being, I&#8217;m going to stuck with the function that I have since a) it&#8217;s working, and b) I have other things to worry about! <img src='http://www.vsscorm.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Addison</title>
		<link>http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/comment-page-1/#comment-40</link>
		<dc:creator>Steve Addison</dc:creator>
		<pubDate>Fri, 20 Nov 2009 20:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.vsscorm.net/?p=174#comment-40</guid>
		<description>Actually, there are small (but significant) differences between JavaScript&#039;s escape() function and &#039;urlencode&#039; as &lt;a href=&quot;http://www.pointwriter.com/blog/index.php?/archives/3-urlencode-for-JavaScript.html&quot; rel=&quot;nofollow&quot;&gt;this article&lt;/a&gt;, and several others that you can &lt;a href=&quot;http://www.google.com/search?q=javascript+difference+between+escape+and+urlencode&quot; rel=&quot;nofollow&quot;&gt;find through Google&lt;/a&gt;, point out.</description>
		<content:encoded><![CDATA[<p>Actually, there are small (but significant) differences between JavaScript&#8217;s escape() function and &#8216;urlencode&#8217; as <a href="http://www.pointwriter.com/blog/index.php?/archives/3-urlencode-for-JavaScript.html" rel="nofollow">this article</a>, and several others that you can <a href="http://www.google.com/search?q=javascript+difference+between+escape+and+urlencode" rel="nofollow">find through Google</a>, point out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khoi Legend</title>
		<link>http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/comment-page-1/#comment-39</link>
		<dc:creator>Khoi Legend</dc:creator>
		<pubDate>Fri, 20 Nov 2009 19:47:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.vsscorm.net/?p=174#comment-39</guid>
		<description>Or better yet, encodeURI(varname).</description>
		<content:encoded><![CDATA[<p>Or better yet, encodeURI(varname).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khoi Legend</title>
		<link>http://www.vsscorm.net/2009/06/12/the-lmsgetvalue-function/comment-page-1/#comment-38</link>
		<dc:creator>Khoi Legend</dc:creator>
		<pubDate>Fri, 20 Nov 2009 19:40:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.vsscorm.net/?p=174#comment-38</guid>
		<description>JavaScript does provide escape() and unescape() to url encode strings.

Try replacing urlencode(varname) with escape(varname).</description>
		<content:encoded><![CDATA[<p>JavaScript does provide escape() and unescape() to url encode strings.</p>
<p>Try replacing urlencode(varname) with escape(varname).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

