<?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>Schogini &#187; Javascript</title>
	<atom:link href="http://sree.cc/tag/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://sree.cc</link>
	<description>Over The Top Professionals</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:47:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What is Ext.apply?</title>
		<link>http://sree.cc/sencha/what-is-ext-apply</link>
		<comments>http://sree.cc/sencha/what-is-ext-apply#comments</comments>
		<pubDate>Thu, 26 Jan 2012 16:35:43 +0000</pubDate>
		<dc:creator>gayatri.sa</dc:creator>
				<category><![CDATA[Sencha]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[Ext.apply]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10790</guid>
		<description><![CDATA[Ext.apply is a Sencha function to copy objects. Ext.apply(, ); You can have multiple source object names separated by comma. Why do we need Ext.apply? Isn&#8217;t = enough? No, its not. Not only because you can merge and copy multiple sources to the destination there is also the big reason that, just a simple &#8216;=&#8217; [...]]]></description>
		<wfw:commentRss>http://sree.cc/sencha/what-is-ext-apply/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Number formating in javascript</title>
		<link>http://sree.cc/javascript/number-formating-in-javascript</link>
		<comments>http://sree.cc/javascript/number-formating-in-javascript#comments</comments>
		<pubDate>Fri, 05 Aug 2011 02:59:18 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Format Number]]></category>
		<category><![CDATA[Format Numbers]]></category>
		<category><![CDATA[Formating]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[Pow]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=8584</guid>
		<description><![CDATA[You can format numbers in javascript in following way: var num = 12; var dec = 2; // decimal part rounded to 2var fomatedNumber = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec); alert(fomatedNumber) ; num = 45.6739; var fomatedNumber = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec); alert(fomatedNumber) ; That&#8217;s it.]]></description>
		<wfw:commentRss>http://sree.cc/javascript/number-formating-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting Rotation of device in Android inside a webpage using JavaScript</title>
		<link>http://sree.cc/google/detecting-rotation-of-device-in-android-inside-a-webpage-using-javascript</link>
		<comments>http://sree.cc/google/detecting-rotation-of-device-in-android-inside-a-webpage-using-javascript#comments</comments>
		<pubDate>Thu, 26 May 2011 08:15:53 +0000</pubDate>
		<dc:creator>Anoop CH</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Listener]]></category>
		<category><![CDATA[Orientation]]></category>
		<category><![CDATA[Screen Window]]></category>
		<category><![CDATA[webpage]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=7499</guid>
		<description><![CDATA[In-order to detect an orientation change on an Android browser, add a listener for either the &#8216;orientationchange&#8217; or &#8216;resize&#8217; event on window. // Detect whether device supports orientationchange event, otherwise fall back to the resize event. var supportsOrientationChange = "onorientationchange" in window, orientationEvent = supportsOrientationChange ? "orientationchange" : "resize"; window.addEventListener(orientationEvent, function() { alert('Rotation of screen:' [...]]]></description>
		<wfw:commentRss>http://sree.cc/google/detecting-rotation-of-device-in-android-inside-a-webpage-using-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace String Function In Javascript</title>
		<link>http://sree.cc/javascript/replace-string-function-in-javascript</link>
		<comments>http://sree.cc/javascript/replace-string-function-in-javascript#comments</comments>
		<pubDate>Wed, 23 Feb 2011 03:40:26 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[hyphen]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[replace string]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=5674</guid>
		<description><![CDATA[Replace String Function in Javascript is used to replace the specified characters with new characters in the provided string. Syntax: stringObject.replace([string pattern to find],[new string]); Example: var myString = new String(); myString = "This is first example"; document.write(myString.replace(/ /,"-")); Above example will replace the first occurrence of space with hyphen &#8220;-&#8221;. Output: This-is first example]]></description>
		<wfw:commentRss>http://sree.cc/javascript/replace-string-function-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Split Function in JavaScript</title>
		<link>http://sree.cc/javascript/split-function-in-javascript</link>
		<comments>http://sree.cc/javascript/split-function-in-javascript#comments</comments>
		<pubDate>Wed, 23 Feb 2011 03:23:58 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[arrayindex]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=5663</guid>
		<description><![CDATA[Split Function in JavaScript is used to split any string into two or more parts by passing the separator character in the split function. Split function splits a string into an array by storing the first part at first index, second part at second index and so on. Syntax: stringObject.split( [separator character] ); example: &#60;pre [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/split-function-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trim in javascript</title>
		<link>http://sree.cc/javascript/trim-in-javascript</link>
		<comments>http://sree.cc/javascript/trim-in-javascript#comments</comments>
		<pubDate>Mon, 14 Feb 2011 03:47:52 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[trim]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=5491</guid>
		<description><![CDATA[Trim is a string manipulation function or algorithm.This Javascript code trim implementation removes all leading and trailing occurrences of a set of characters specified. If no characters are specified it will trim  whitespace characters from the beginning or end or both of the string. Example: &#60;html&#62; &#60;script language="JavaScript" type="text/javascript"&#62; String.prototype.trim = function () { return [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/trim-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploy application in Symbian OS using HTML, CSS, Javascript</title>
		<link>http://sree.cc/nokia-symbian/deploy-application-in-symbian-os-using-html-css-javascript-2</link>
		<comments>http://sree.cc/nokia-symbian/deploy-application-in-symbian-os-using-html-css-javascript-2#comments</comments>
		<pubDate>Fri, 11 Feb 2011 10:30:50 +0000</pubDate>
		<dc:creator>Ajith</dc:creator>
				<category><![CDATA[Nokia/Symbian]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Default Location]]></category>
		<category><![CDATA[Default Names]]></category>
		<category><![CDATA[Homescreen]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Html Css]]></category>
		<category><![CDATA[Html Xmlns]]></category>
		<category><![CDATA[Input Name]]></category>
		<category><![CDATA[Input Type]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Javascript Files]]></category>
		<category><![CDATA[Language Javascript]]></category>
		<category><![CDATA[Link Rel]]></category>
		<category><![CDATA[Nder]]></category>
		<category><![CDATA[Necessary Files]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Nokia Web]]></category>
		<category><![CDATA[Script Language]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[Text Javascript]]></category>
		<category><![CDATA[Transitional Dtd]]></category>
		<category><![CDATA[Utf 8]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[Wrt]]></category>

		<guid isPermaLink="false">http://sree.cc/uncategorized/deploy-application-in-symbian-os-using-html-css-javascript-2</guid>
		<description><![CDATA[Here I&#8217;ll demonstrate how to develop and deploy application for Symbian OS, using Aptana Studio. (Windows platform) Download Aptana Studio and install it from, http://aptana.com/products/studio2/download Download Nokia WRT plug-in for Aptana Studio and install it from, http://goo.gl/LxQye After completing the above steps, start Aptana Studio Select File &#62;&#62; New &#62;&#62; Project Under Nokia Web Runtime (WRT), [...]]]></description>
		<wfw:commentRss>http://sree.cc/nokia-symbian/deploy-application-in-symbian-os-using-html-css-javascript-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refreshing page using Timer Function</title>
		<link>http://sree.cc/javascript/refreshing-page-using-timer-function</link>
		<comments>http://sree.cc/javascript/refreshing-page-using-timer-function#comments</comments>
		<pubDate>Fri, 28 Jan 2011 03:20:39 +0000</pubDate>
		<dc:creator>Anish Kumar D</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[Timer]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=4826</guid>
		<description><![CDATA[Refresh in 4 seconds]]></description>
		<wfw:commentRss>http://sree.cc/javascript/refreshing-page-using-timer-function/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Slide Show</title>
		<link>http://sree.cc/javascript/image-slide-show</link>
		<comments>http://sree.cc/javascript/image-slide-show#comments</comments>
		<pubDate>Tue, 05 Oct 2010 12:52:08 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Auto 5000]]></category>
		<category><![CDATA[Body Image]]></category>
		<category><![CDATA[Document Images]]></category>
		<category><![CDATA[Fs Options]]></category>
		<category><![CDATA[Image Slide Show]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Parrots]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[Water Fall]]></category>
		<category><![CDATA[Yellow Flower]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=2398</guid>
		<description><![CDATA[This is the source code to create an image slide show in javascript: &#60;html&#62; &#60;head&#62; &#60;/head&#62; &#60;body&#62; Image Slide Show yellow flower parrots teady water fall &#60;/body&#62; &#60;/html&#62; The screen shot for this application looks like:]]></description>
		<wfw:commentRss>http://sree.cc/javascript/image-slide-show/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery for Beginners</title>
		<link>http://sree.cc/jquery/jquery-for-beginners</link>
		<comments>http://sree.cc/jquery/jquery-for-beginners#comments</comments>
		<pubDate>Fri, 12 Feb 2010 12:49:20 +0000</pubDate>
		<dc:creator>nivedita</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[w3schools]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=522</guid>
		<description><![CDATA[Besides W3Schools one site with a really helpful tutorial for jQuery that any beginner can browse through easily is the Web Designer Wall. http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/ This tutorial is not just clear and to-the-point, it is also very bright and bold in presentation. It has 10 really helpful visual tutorials on jQuery in an easy to understand, [...]]]></description>
		<wfw:commentRss>http://sree.cc/jquery/jquery-for-beginners/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sree.cc @ 2012-02-06 09:25:55 -->
