<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marilyn Burgess &#187; Javascript</title>
	<atom:link href="http://marilynburgess.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://marilynburgess.com</link>
	<description></description>
	<lastBuildDate>Mon, 29 Aug 2011 16:33:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MooTools Date Picker</title>
		<link>http://marilynburgess.com/2009/12/mootools-date-picker/</link>
		<comments>http://marilynburgess.com/2009/12/mootools-date-picker/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 22:02:06 +0000</pubDate>
		<dc:creator>marilyn</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[date picker]]></category>

		<guid isPermaLink="false">http://blog.listcentral.me/?p=479</guid>
		<description><![CDATA[A new feature is on its way to the List Central interface. Soon List Central users will be able to associate a date, and time with any list item in any list, and request List Central to email him/her either once, annually, monthly, weekly or daily on that date and time. I love the date [...]]]></description>
			<content:encoded><![CDATA[<p>A new feature is on its way to the List Central interface. Soon List Central users will be able to associate a date, and time with any list item in any list, and request List Central to email him/her either once, annually, monthly, weekly or daily on that date and time.</p>
<p><img src="http://marilynburgess.com/images/2009/12/datepicker.png" alt="datepicker" title="datepicker" width="405" height="220" class="alignnone size-full wp-image-514" /></p>
<p><img src="http://marilynburgess.com/images/2009/12/timepicker.png" alt="timepicker" title="timepicker" width="381" height="221" class="alignnone size-full wp-image-515" /></p>
<p>I love the date picker Javascript script I found to help accomplish this new feature. It is the <a href="http://www.monkeyphysics.com/mootools/script/2/datepicker">MooTools DatePicker by MonkeyPhysics</a>. The script is flexible and well documented. There are even 4 different skins ready made to use in your application. Thank you <a href="http://www.monkeyphysics.com/">MonkeyPhysics</a> for building this date picker script! </p>
<h3  class="related_post_title">You might also like...</h3><ul class="related_post"><li><a href="http://marilynburgess.com/2009/12/charcode-is-meaningless/" title="charCode is meaningless">charCode is meaningless</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://marilynburgess.com/2009/12/mootools-date-picker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>charCode is meaningless</title>
		<link>http://marilynburgess.com/2009/12/charcode-is-meaningless/</link>
		<comments>http://marilynburgess.com/2009/12/charcode-is-meaningless/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:01:48 +0000</pubDate>
		<dc:creator>marilyn</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[charCode]]></category>

		<guid isPermaLink="false">http://blog.listcentral.me/?p=507</guid>
		<description><![CDATA[I have seen this Javascript error in my Firefox Error Console many times, from many high profile sites about the internet. Warning: The &#8216;charCode&#8217; property of a keyup event should not be used. The value is meaningless. I&#8217;m trying not to be smug, but it does feel good to know that List Central uses the [...]]]></description>
			<content:encoded><![CDATA[<p>I have seen this Javascript error in my Firefox Error Console many times, from many high profile sites about the internet.</p>
<p><em>Warning: The &#8216;charCode&#8217; property of a keyup event should not be used. The value is meaningless.</em></p>
<p>I&#8217;m trying not to be smug, but it does feel good to know that List Central uses the charCode concept while not throwing any Javascript errors. I&#8217;ve aimed to keep that Error Console clean through the entire development of List Central.</p>
<p>For those of you that want to get rid of that pesky charCode error, change</p>
<pre class="brush: javascript">var code = event.charCode;
</pre>
<p>to:</p>
<pre class="brush: javascript">
var code;
if (e.keyCode){
    code = e.keyCode;
}else if (e.which) {
    code = e.which;
}
var character = String.fromCharCode(code).toLowerCase();
</pre>
<h3  class="related_post_title">You might also like...</h3><ul class="related_post"><li><a href="http://marilynburgess.com/2009/12/mootools-date-picker/" title="MooTools Date Picker">MooTools Date Picker</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://marilynburgess.com/2009/12/charcode-is-meaningless/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

