<?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>{MVC} Logic &#187; Javascript</title>
	<atom:link href="http://mvclogic.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://mvclogic.com</link>
	<description>MVC Frameworks, PHP Frameworks, CodeIgniter, QT4 - My Experience, Tips ,Tricks, Tweaks, Codes and much more... : MVC{model-view-controller} Logic - Code Hungry</description>
	<lastBuildDate>Sun, 15 Jan 2012 08:55:44 +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>HTML 5 Framework for game development</title>
		<link>http://mvclogic.com/javascript/html-5-framework-for-game-development/</link>
		<comments>http://mvclogic.com/javascript/html-5-framework-for-game-development/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 07:31:43 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=400</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/html-5-framework-for-game-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find actual javascript size of array</title>
		<link>http://mvclogic.com/javascript/find-actual-javascript-size-of-array/</link>
		<comments>http://mvclogic.com/javascript/find-actual-javascript-size-of-array/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 12:41:03 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=396</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 //find value in associative array for &#40;i in tmpArr&#41; &#123;     console.log&#40;i+':'+tmpArr&#91;i&#93;+', '&#41;; // outputs: one:First, two:Second, three:Third &#125; &#160; &#8230; <a href="http://mvclogic.com/javascript/find-actual-javascript-size-of-array/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/find-actual-javascript-size-of-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: checking if a function exists</title>
		<link>http://mvclogic.com/javascript/javascript-checking-if-a-function-exists/</link>
		<comments>http://mvclogic.com/javascript/javascript-checking-if-a-function-exists/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 14:48:19 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=387</guid>
		<description><![CDATA[It’s typeof to the rescue (again)! To check if a function exists before you try and call it (and get a nasty javasscript error), use typeof to check. Heres something I prepared earlier: 1 2 3 4 if&#40;typeof window.myFunction == &#8230; <a href="http://mvclogic.com/javascript/javascript-checking-if-a-function-exists/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/javascript-checking-if-a-function-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling a JavaScript function using JavaScript variable</title>
		<link>http://mvclogic.com/javascript/calling-a-javascript-function-using-javascript-variable/</link>
		<comments>http://mvclogic.com/javascript/calling-a-javascript-function-using-javascript-variable/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 10:11:07 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=378</guid>
		<description><![CDATA[Functions are first-class objects, so they can be properties of an object (in which case they are called methods) or even elements of arrays. If you aren&#8217;t choosing the object a function belongs to, it belongs to the global scope. &#8230; <a href="http://mvclogic.com/javascript/calling-a-javascript-function-using-javascript-variable/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/calling-a-javascript-function-using-javascript-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Live alternate/replacement in MooTools</title>
		<link>http://mvclogic.com/javascript/jquery-live-alternatereplacement-in-mootools/</link>
		<comments>http://mvclogic.com/javascript/jquery-live-alternatereplacement-in-mootools/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 09:55:12 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=375</guid>
		<description><![CDATA[1 2 3 4 5 6 7 8 9 10 11    $&#40;'base-id'&#41;.addEvent&#40;'dblclick:relay(childelement)', function&#40;event,clicked&#41; &#123; &#160; &#125; &#160; //example &#160; $&#40;'selected_modules'&#41;.addEvent&#40;'dblclick:relay(option)', function&#40;event,clicked&#41; &#123; &#160; &#125;         ]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/jquery-live-alternatereplacement-in-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Height using Fx.Slide element with Mootools</title>
		<link>http://mvclogic.com/javascript/dynamic-height-using-fx-slide-element-with-mootools/</link>
		<comments>http://mvclogic.com/javascript/dynamic-height-using-fx-slide-element-with-mootools/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 09:27:45 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=372</guid>
		<description><![CDATA[this.step_3 = new Fx.Slide&#40;'step_3', &#123; onComplete: function&#40;&#41;&#123; &#160; this.wrapper.setStyle&#40;'height', null&#41;; //or this.wrapper.setStyle&#40;'height', 'auto'&#41;; &#160; &#125; &#125;&#41;;]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/dynamic-height-using-fx-slide-element-with-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove style attribute using MooTools</title>
		<link>http://mvclogic.com/javascript/remove-style-attribute-using-mootools/</link>
		<comments>http://mvclogic.com/javascript/remove-style-attribute-using-mootools/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 09:10:56 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=370</guid>
		<description><![CDATA[element.setStyle(&#8216;somestyle&#8217;, null); element.setStyle(&#8216;border&#8217;,&#8221;//empty string]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/remove-style-attribute-using-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MooTools AJAX : Preserve javascript/Script tags</title>
		<link>http://mvclogic.com/javascript/mootools-ajax-preserve-javascriptscript-tags/</link>
		<comments>http://mvclogic.com/javascript/mootools-ajax-preserve-javascriptscript-tags/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 19:05:56 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=368</guid>
		<description><![CDATA[There are two ways that I know of with Request.HTML. By default, evalScripts is set to true. If you set the &#8216;update&#8217; to $(&#8216;refresh-box&#8217, it will work. function ajaxRequest&#40;&#41;&#123; new Request.HTML&#40;&#123; url: 'post.php', update: $&#40;'refresh-box'&#41; &#125;&#41;.send&#40;&#41;; &#125; By default, the &#8230; <a href="http://mvclogic.com/javascript/mootools-ajax-preserve-javascriptscript-tags/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/mootools-ajax-preserve-javascriptscript-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools form submit error</title>
		<link>http://mvclogic.com/javascript/mootools-form-submit-error-object-object/</link>
		<comments>http://mvclogic.com/javascript/mootools-form-submit-error-object-object/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 11:04:14 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=360</guid>
		<description><![CDATA[Mootools form submit error : %5Bobject%20Object%5D. You should set send before sending, like this: $&#40;'form'&#41;.set&#40;'send',&#123; onFailure:function&#40;&#41;&#123;console.log&#40;'Error'&#41;&#125;, onComplete: function&#40;&#41; &#123; console.log&#40;'Data saved sucessfully!'&#41; &#125; &#160; &#125;&#41;; &#160; $&#40;'form'&#41;.send&#40;&#41;;]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/mootools-form-submit-error-object-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for undefined JavaScript variable</title>
		<link>http://mvclogic.com/javascript/check-for-undefined-javascript-variable/</link>
		<comments>http://mvclogic.com/javascript/check-for-undefined-javascript-variable/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 12:56:17 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=344</guid>
		<description><![CDATA[The typeof operator The &#8220;typeof&#8221; operator in JavaScript allows you to probe the data type of its operand, such as whether a variable is string, numeric, or even undefined. The below simple example alerts the data type of the variable &#8230; <a href="http://mvclogic.com/javascript/check-for-undefined-javascript-variable/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/check-for-undefined-javascript-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

