<?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>MEMISO &#187; JavaScript</title>
	<atom:link href="http://www.memiso.com/tag/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memiso.com</link>
	<description>Little Solutions For Big Problems</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:19:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Making Uppercase First Letters of Words, Sentences or Lines in JavaScript</title>
		<link>http://www.memiso.com/making-uppercase-first-letters-of-words-sentences-or-lines-in-javascript.html</link>
		<comments>http://www.memiso.com/making-uppercase-first-letters-of-words-sentences-or-lines-in-javascript.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 04:53:45 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[String Operations]]></category>
		<category><![CDATA[Uppercase]]></category>
		<category><![CDATA[Useful Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=719</guid>
		<description><![CDATA[We have talked about making uppercase the first letters of words, sentences and lines in ASP before. Now, we will make the same application in JavaScript.

Let’s look at the UppercaseTheFirstLetter() function.
Function 1.0: UpperFunction.js
1234567891011121314151617181920function UppercaseTheFirstLetter&#40;string,option&#41;&#123;
var splitby,parts,i,uppercased;
if&#40;option==0&#41;&#123;splitby=&#34; &#34;;&#125;
else if&#40;option==1&#41;&#123;splitby=&#34;.&#34;;&#125;
else if&#40;option==2&#41;&#123;splitby=&#34;&#60;BR&#62;&#34;;&#125;

string=string.replace&#40;/^\s+/, ''&#41;.replace&#40;/\s+$/, ''&#41;; 
//we removed unnecessary spaces at the beginning and ending of string. 
parts = string.split&#40;splitby&#41;;

for&#40;i=0;i&#60;parts.length;i++&#41;&#123;
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/making-uppercase-first-letters-of-words-sentences-or-lines-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navigator Object in JavaScript</title>
		<link>http://www.memiso.com/all-properties-and-methods-of-navigator-object-in-javascript.html</link>
		<comments>http://www.memiso.com/all-properties-and-methods-of-navigator-object-in-javascript.html#comments</comments>
		<pubDate>Wed, 07 Oct 2009 19:58:12 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[Navigator]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=435</guid>
		<description><![CDATA[We need to know how to use properties and methods of Navigator object in JavaScript to make powerful applications. Navigator object gives us to get browser information of client. There is a list of all properties and methods in  Javascript.

I. All Common Navigator Properties in JavaScript



Property


Description




appCodeName&#160;:


The code name of the browser(ie: Mozilla)




appName&#160;:


The name of [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/all-properties-and-methods-of-navigator-object-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an Image SlideShow Using Javascript</title>
		<link>http://www.memiso.com/creating-an-image-slideshow-using-javascript.html</link>
		<comments>http://www.memiso.com/creating-an-image-slideshow-using-javascript.html#comments</comments>
		<pubDate>Sat, 03 Oct 2009 16:36:50 +0000</pubDate>
		<dc:creator>Captain</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Image SlideShow]]></category>
		<category><![CDATA[Slideshow]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=373</guid>
		<description><![CDATA[In this article, we will create an image slideshow including a lot of effects. We will use HTML and JAVASCRIPT. We have three files (functions.js, slideshow.html and style.css).

Application 1.0 (Creating an Image Slide Show with Javascript)
functions.js:
1234567891011121314151617181920212223242526272829var i=1;
var r=0; //This variable contains the number of loaded images.
var address='images/';
function ChangeImage&#40;&#41;&#123; 
&#160; var ourimage=document.getElementById&#40;&#34;slideImg&#34;&#41;;
&#160; if &#40;document.all &#38;&#38; ourimage.filters&#41;&#123;
&#160; [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/creating-an-image-slideshow-using-javascript.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Generating Random Number in JavaScript</title>
		<link>http://www.memiso.com/generating-random-number-in-javascript.html</link>
		<comments>http://www.memiso.com/generating-random-number-in-javascript.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 22:39:00 +0000</pubDate>
		<dc:creator>Captain</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Random Number]]></category>
		<category><![CDATA[Randomization]]></category>
		<category><![CDATA[Randomize]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=216</guid>
		<description><![CDATA[Generating random numbers is very important in Javascript like other programming languages&#8230; JavaScript adds dynamism to our html pages. For example: If you want to add a slideshow that is arranged in order at random to your page, you need to generate a random number. In this article, we will see to generate a random [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/generating-random-number-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Loops</title>
		<link>http://www.memiso.com/javascript-loops.html</link>
		<comments>http://www.memiso.com/javascript-loops.html#comments</comments>
		<pubDate>Sun, 20 Sep 2009 23:16:36 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[Looping]]></category>
		<category><![CDATA[Loops]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=180</guid>
		<description><![CDATA[There are three methods for making a loop with JavaScript. There is a list of all loop structures in JavaScript:

I. While loop
II. Do … While loop
III. For loop

I. While Loop
This statement can be very useful if you don’t have or don&#8217;t know number of repetitions because it loops the operations while specified conditions are true.

Structure [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/javascript-loops.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
