<?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>westworld: a webmasters best friend &#187; javascript</title>
	<atom:link href="http://www.westworld.be/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.westworld.be</link>
	<description>A webmasters best friend</description>
	<lastBuildDate>Mon, 14 Jun 2010 18:12:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Most wanted Ajax stuff</title>
		<link>http://www.westworld.be/uncategorized/most-wanted-ajax-stuff/</link>
		<comments>http://www.westworld.be/uncategorized/most-wanted-ajax-stuff/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 10:29:07 +0000</pubDate>
		<dc:creator>westworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://www.westworld.be/?p=20</guid>
		<description><![CDATA[Today Noupe posted an overview of the most wanted ajax techniques. A list of over 50 solutions for common javascript problems. Librarys used include JQuery, Prototype and Mootools. It&#8217;s a good checklist if you need something special, done quick. I especially like wTag and Starbox. Thanx Noupe.






Related posts:Prototype: submit multiple select with ajax call


Related posts:<ol><li><a href='http://www.westworld.be/a-note-to-self/prototype-submit-multiple-select-with-ajax-call/' rel='bookmark' title='Permanent Link: Prototype: submit multiple select with ajax call'>Prototype: submit multiple select with ajax call</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Today <a href="http://www.noupe.com/javascript/most-wanted-ajax-techniques-50-ajax-examples-and-tutorials.html" rel='nofollow'>Noupe</a> posted an overview of the most wanted ajax techniques. A list of over 50 solutions for common javascript problems. Librarys used include JQuery, Prototype and Mootools. It&#8217;s a good checklist if you need something special, done quick. I especially like wTag and Starbox. Thanx Noupe.</p>
<p><a href="http://www.westworld.be/wp-content/uploads/2008/11/ajaxfeatures21.jpg"><img class="alignnone size-medium wp-image-21" title="wTag" src="http://www.westworld.be/wp-content/uploads/2008/11/ajaxfeatures21-300x120.jpg" alt="wTag" width="300" height="120" /></a></p>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none"></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.westworld.be/a-note-to-self/prototype-submit-multiple-select-with-ajax-call/' rel='bookmark' title='Permanent Link: Prototype: submit multiple select with ajax call'>Prototype: submit multiple select with ajax call</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.westworld.be/uncategorized/most-wanted-ajax-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript date object</title>
		<link>http://www.westworld.be/a-note-to-self/javascript-date-object/</link>
		<comments>http://www.westworld.be/a-note-to-self/javascript-date-object/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 08:32:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[a note to self]]></category>
		<category><![CDATA[Date()]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.westworld.be/?p=16</guid>
		<description><![CDATA[How to use javascript's date() object.


Related posts:<ol><li><a href='http://www.westworld.be/a-note-to-self/prototype-submit-multiple-select-with-ajax-call/' rel='bookmark' title='Permanent Link: Prototype: submit multiple select with ajax call'>Prototype: submit multiple select with ajax call</a></li></ol>]]></description>
			<content:encoded><![CDATA[<pre class="code">var mytime = new Date()
var mymonth = mytime<span style="color: red;">.getMonth() + 1</span> // for javascript january = 0  correct this by adding 1
var myday = mytime.getDate()
var myyear = mytime.getFullYear()
document.write(mymonth + "/" + myday + "/" + myyear)
Beware that this is the date on the client's computer. For forms use the date on your server.
</pre>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <strong></strong></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.westworld.be/a-note-to-self/prototype-submit-multiple-select-with-ajax-call/' rel='bookmark' title='Permanent Link: Prototype: submit multiple select with ajax call'>Prototype: submit multiple select with ajax call</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.westworld.be/a-note-to-self/javascript-date-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript variables</title>
		<link>http://www.westworld.be/a-note-to-self/javascript-variables/</link>
		<comments>http://www.westworld.be/a-note-to-self/javascript-variables/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 12:02:05 +0000</pubDate>
		<dc:creator>westworld</dc:creator>
				<category><![CDATA[a note to self]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.westworld.be/?p=6</guid>
		<description><![CDATA[Make sure your variables in javascript are unique. They should not be used in id&#8217;s and classes. IE doesn&#8217;t like it. (Works fine in Firefox)


No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<blockquote><p>Make sure your variables in javascript are unique. They should not be used in id&#8217;s and classes. IE doesn&#8217;t like it. (Works fine in Firefox)</p></blockquote>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.westworld.be/a-note-to-self/javascript-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
