<?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/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://sree.cc</link>
	<description>Over The Top Professionals</description>
	<lastBuildDate>Fri, 18 May 2012 07:43:28 +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>How to set,get and delete cookies using Javascript?</title>
		<link>http://sree.cc/javascript/how-to-setget-and-delete-cookies-using-javascript</link>
		<comments>http://sree.cc/javascript/how-to-setget-and-delete-cookies-using-javascript#comments</comments>
		<pubDate>Thu, 10 May 2012 07:23:00 +0000</pubDate>
		<dc:creator>zalma</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[cookies]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=13809</guid>
		<description><![CDATA[function setCookie (name, value, expires, path, domain, secure){ var today = new Date(); today.setTime(today.getTime()); if (expires){ expires = expires * 1000 * 60 * 60 * 24; } var expires_date = new Date( today.getTime() + (expires)); document.cookie = name+'='+escape( value ) + ((expires) ? ';expires='+expires_date.toGMTString() : '' ) + //expires.toGMTString() ((path) ? ';path=' + path [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/how-to-setget-and-delete-cookies-using-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling a button defined in an anchor tag</title>
		<link>http://sree.cc/javascript/disabling-a-button-defined-in-an-anchor-tag</link>
		<comments>http://sree.cc/javascript/disabling-a-button-defined-in-an-anchor-tag#comments</comments>
		<pubDate>Fri, 04 May 2012 03:56:55 +0000</pubDate>
		<dc:creator>arya</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=13696</guid>
		<description><![CDATA[Initially, set onclick=&#8221;return false&#8221;, then use your script to change the value of onclick when the time comes. You could also add a class to the anchor, then use CSS to style the link so that it does not look like a link. Then remove that class from the element at the same time that [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/disabling-a-button-defined-in-an-anchor-tag/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using reflection to call methods in java</title>
		<link>http://sree.cc/javascript/using-reflection-to-call-methods-in-java</link>
		<comments>http://sree.cc/javascript/using-reflection-to-call-methods-in-java#comments</comments>
		<pubDate>Mon, 30 Apr 2012 08:56:14 +0000</pubDate>
		<dc:creator>Thasneem M</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=13570</guid>
		<description><![CDATA[import java.lang.reflect.*; Class c = ...;  // see above Method[] methods = c.getMethods(); Method m = methods[i]; String s = m.getName(); Class r = m.getReturnType();  // returns void.class if void Class[] p = m.getParameterTypes(); // to invoke a method, use: Object invoke(Object o, Object[] args);]]></description>
		<wfw:commentRss>http://sree.cc/javascript/using-reflection-to-call-methods-in-java/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simulate threads using Yield operator</title>
		<link>http://sree.cc/javascript/simulate-threads-using-yield-operator</link>
		<comments>http://sree.cc/javascript/simulate-threads-using-yield-operator#comments</comments>
		<pubDate>Fri, 27 Apr 2012 08:48:37 +0000</pubDate>
		<dc:creator>Thasneem M</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=13235</guid>
		<description><![CDATA[//// thread definition function Thread( name ) { for ( var i = 0; i &#60; 5; i++ ) { Print(name+': '+i); yield; } } //// thread management var threads = []; // thread creation threads.push( new Thread('foo') ); threads.push( new Thread('bar') ); // scheduler while (threads.length) { var thread = threads.shift(); try { thread.next(); [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/simulate-threads-using-yield-operator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Date using Javascript</title>
		<link>http://sree.cc/javascript/working-with-date-using-javascript</link>
		<comments>http://sree.cc/javascript/working-with-date-using-javascript#comments</comments>
		<pubDate>Fri, 30 Mar 2012 10:32:55 +0000</pubDate>
		<dc:creator>vinoy</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=12432</guid>
		<description><![CDATA[JavaScript has a built in function that allows you to work with dates. This feature is great for creating a calender, to display the current date, or to create a clock. You can also use the date function to set the date in your script. Date Objects Method Description getDate() Returns the current date and [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/working-with-date-using-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get angle theta value in javascript</title>
		<link>http://sree.cc/javascript/get-angle-theta-value-in-javascript</link>
		<comments>http://sree.cc/javascript/get-angle-theta-value-in-javascript#comments</comments>
		<pubDate>Mon, 26 Mar 2012 03:35:49 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[theta]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=12204</guid>
		<description><![CDATA[Returns the angle theta of x and y atan2(y,x)]]></description>
		<wfw:commentRss>http://sree.cc/javascript/get-angle-theta-value-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maximum of two numbers</title>
		<link>http://sree.cc/javascript/maximum-of-two-numbers</link>
		<comments>http://sree.cc/javascript/maximum-of-two-numbers#comments</comments>
		<pubDate>Tue, 20 Mar 2012 03:34:10 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[maximum]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=12202</guid>
		<description><![CDATA[Returns the value of the highest number max(x,y)]]></description>
		<wfw:commentRss>http://sree.cc/javascript/maximum-of-two-numbers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>natural logarithm in javascript</title>
		<link>http://sree.cc/javascript/natural-logarithm-in-javascript</link>
		<comments>http://sree.cc/javascript/natural-logarithm-in-javascript#comments</comments>
		<pubDate>Mon, 19 Mar 2012 03:33:00 +0000</pubDate>
		<dc:creator>kavithags</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[log]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=12200</guid>
		<description><![CDATA[log(x) Returns the natural logarithm of x]]></description>
		<wfw:commentRss>http://sree.cc/javascript/natural-logarithm-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java script to move an image</title>
		<link>http://sree.cc/javascript/java-script-to-move-an-image</link>
		<comments>http://sree.cc/javascript/java-script-to-move-an-image#comments</comments>
		<pubDate>Fri, 16 Mar 2012 12:50:42 +0000</pubDate>
		<dc:creator>ananya</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Coding]]></category>
		<category><![CDATA[moving image]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=11773</guid>
		<description><![CDATA[This code is used for moving  image in browser. &#60;html&#62; &#60;h2&#62;Move Image&#60;/h2&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; var X, Y; window.document.onclick=moveImage; function moveImage(){ X = (document.layers) ? e.pageX : event.clientX Y = (document.layers) ? e.pageY : event.clientY document.getElementById(&#8216;image&#8217;).style.position=&#8221;absolute&#8221;; document.getElementById(&#8216;image&#8217;).style.left=X; document.getElementById(&#8216;image&#8217;).style.top=Y; } &#60;/script&#62; &#60;img id=&#8221;image&#8221; src=&#8221;node.jpg&#8221;&#62;&#60;/img&#62; &#60;/html&#62;]]></description>
		<wfw:commentRss>http://sree.cc/javascript/java-script-to-move-an-image/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detect iPhone orientation</title>
		<link>http://sree.cc/javascript/detect-iphone-orientation</link>
		<comments>http://sree.cc/javascript/detect-iphone-orientation#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:25:03 +0000</pubDate>
		<dc:creator>shajir</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10944</guid>
		<description><![CDATA[Due to the fact that the iPhone allow its users to view a page in both portrait and landscape modes, you may need to be able to detect in which mode the document is being read. This handy javascript function will detect the current iPhone orientation and will apply a specific CSS class so you [...]]]></description>
		<wfw:commentRss>http://sree.cc/javascript/detect-iphone-orientation/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-05-19 10:31:04 -->
