<?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>Navneet's Blog</title>
	<atom:link href="http://navneetsharma.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://navneetsharma.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 11 Nov 2009 06:21:35 +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>Shadow box onClose event</title>
		<link>http://navneetsharma.com/blog/?p=8</link>
		<comments>http://navneetsharma.com/blog/?p=8#comments</comments>
		<pubDate>Wed, 11 Nov 2009 06:21:35 +0000</pubDate>
		<dc:creator>Navneet</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[shadow box]]></category>

		<guid isPermaLink="false">http://navneetsharma.com/blog/?p=8</guid>
		<description><![CDATA[In my recent project, i have found onClose event in shadow box&#8230; Using this event we can add our script when user click on close button&#8230;
Shadowbox.init({
loadSkin:   &#8220;classic&#8221;,
language:   &#8220;en&#8221;,
players:    ['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'] 
}
 );
window.onload = function(){
Shadowbox.init();
 
Shadowbox.setup(&#8221;a.classname&#8221;, {
 onClose : function() { someting&#8230; }
 });
 };
]]></description>
			<content:encoded><![CDATA[<p>In my recent project, i have found onClose event in shadow box&#8230; Using this event we can add our script when user click on close button&#8230;</p>
<p>Shadowbox.init({</p>
<p>loadSkin:   &#8220;classic&#8221;,</p>
<p>language:   &#8220;en&#8221;,</p>
<p>players:    ['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp']<span> </span></p>
<p>}</p>
<p><span> </span>);</p>
<p>window.onload = function(){</p>
<p>Shadowbox.init();</p>
<p><span> </span></p>
<p>Shadowbox.setup(&#8221;a.classname&#8221;, {</p>
<p><span> </span>onClose : function() { someting&#8230; }</p>
<p><span> </span>});</p>
<p><span> </span>};</p>
]]></content:encoded>
			<wfw:commentRss>http://navneetsharma.com/blog/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Closures and PHP</title>
		<link>http://navneetsharma.com/blog/?p=5</link>
		<comments>http://navneetsharma.com/blog/?p=5#comments</comments>
		<pubDate>Tue, 05 May 2009 13:28:46 +0000</pubDate>
		<dc:creator>Navneet</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Closures]]></category>

		<guid isPermaLink="false">http://navneetsharma.com/blog/?p=5</guid>
		<description><![CDATA[PHP 5.3 will be introducing closures to PHP. Closures, also known as anonymous functions, will allow you to declare functions “inline” and store them in variables. While the syntax may seem a bit weird compared to how it is in languages like JavaScript, closures will be a useful addition to the language.
Lambda function style:
$lambda= function() [...]]]></description>
			<content:encoded><![CDATA[<p>PHP 5.3 will be introducing closures to PHP. Closures, also known as anonymous functions, will allow you to declare functions “inline” and store them in variables. While the syntax may seem a bit weird compared to how it is in languages like JavaScript, closures will be a useful addition to the language.</p>
<p>Lambda function style:<br />
$lambda= function() { echo &#8220;Hello World!\n&#8221; ; };</p>
]]></content:encoded>
			<wfw:commentRss>http://navneetsharma.com/blog/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

