<?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>Rajesh Tandukar</title>
	<atom:link href="http://tandukar.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tandukar.com</link>
	<description>PHP, Wordpress, Joomla , jQuery , Mootools : Complete web solutions</description>
	<lastBuildDate>Sun, 06 Jun 2010 09:25:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mootools Map Password Strength</title>
		<link>http://tandukar.com/2010/06/06/mootools-map-password-strength/</link>
		<comments>http://tandukar.com/2010/06/06/mootools-map-password-strength/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 09:04:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[mootools password strength]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=206</guid>
		<description><![CDATA[Mootools Map Password Strength is a simple mootools  1.11 class to check the password strength.

Easy to setup, no any extra settings required.

]]></description>
			<content:encoded><![CDATA[<p>Mootools Map Password Strength is a simple mootools  1.11 class to check the password strength.</p>
<p><a href="http://tandukar.com/wp-content/uploads/2010/06/password_strength.jpg"><img class="size-full wp-image-207 alignnone" title="password_strength" src="http://tandukar.com/wp-content/uploads/2010/06/password_strength.jpg" alt="" width="269" height="107" /></a></p>
<p>Easy to setup, no any extra settings required.</p>
<p><a href="http://tandukar.com/wp-content/uploads/2010/06/passwordstrength.zip"><img class="alignnone" style="border: 0pt none;" title="Download Mootools Map Password Strength" src="http://tandukar.com/wp-content/uploads/2009/10/download_icon.png" border="0" alt="Download Mootools Map Password Strength" width="48" height="48" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2010/06/06/mootools-map-password-strength/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print selected content from a webpage</title>
		<link>http://tandukar.com/2010/05/27/print-selected-content-from-a-webpage/</link>
		<comments>http://tandukar.com/2010/05/27/print-selected-content-from-a-webpage/#comments</comments>
		<pubDate>Thu, 27 May 2010 05:28:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript print]]></category>
		<category><![CDATA[print webpage]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=195</guid>
		<description><![CDATA[This is an alternate to my post Javascript Print Page Area . Try this.
&#60;script&#62;
function cmdPrint()
{
var windowsettings = &#8221; tollbar=yes,location=no,scrollbar=yes,width=600,height=500,left=100,top=50&#8243;;
var printcontent=document.getElementById(&#8216;printerContent&#8217;);
var popupcontroler = windo.open(&#8220;&#8221;,&#8221;",windowsettings);
popupcontroler.document.open();
popupcontroler.document.write(&#8216;&#60;html&#62;&#60;head&#62;&#60;title&#62;Printer Dilog&#60;/title&#62;);
popupcontroler.document.write(&#8216;&#60;/title&#62;&#60;body onload=&#8221;self.print()&#8221;&#62;&#60;div align=&#8221;center&#8221;&#62;&#8217;);
popupcontroler.document.write(printcontent);
popupcontroler.document.write(&#8216;&#60;/div&#62;&#60;/body&#62;&#60;/html&#62;&#8217;);
popupcontroler.document.close();
&#60;/script&#62;
Wrap your webpage content that need to be print with an id &#8220;printerContent&#8221;
&#60;div id=&#8221;printerContent&#8221;&#62;This is a test print. This is a test print. This is a test print. This is [...]]]></description>
			<content:encoded><![CDATA[<p>This is an alternate to my post<a title="Javascript Print Paeg Area" href="http://tandukar.com/2009/10/16/javascript-print-page-area/" target="_blank"> Javascript Print Page Area</a> . Try this.</p>
<blockquote><p>&lt;script&gt;<br />
function cmdPrint()<br />
{<br />
var windowsettings = &#8221; tollbar=yes,location=no,scrollbar=yes,width=600,height=500,left=100,top=50&#8243;;<br />
var printcontent=document.getElementById(&#8216;printerContent&#8217;);<br />
var popupcontroler = windo.open(&#8220;&#8221;,&#8221;",windowsettings);<br />
popupcontroler.document.open();<br />
popupcontroler.document.write(&#8216;&lt;html&gt;&lt;head&gt;&lt;title&gt;Printer Dilog&lt;/title&gt;);<br />
popupcontroler.document.write(&#8216;&lt;/title&gt;&lt;body onload=&#8221;self.print()&#8221;&gt;&lt;div align=&#8221;center&#8221;&gt;&#8217;);<br />
popupcontroler.document.write(printcontent);<br />
popupcontroler.document.write(&#8216;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&#8217;);<br />
popupcontroler.document.close();</p>
<p>&lt;/script&gt;<br />
Wrap your webpage content that need to be print with an id &#8220;printerContent&#8221;<br />
&lt;div id=&#8221;printerContent&#8221;&gt;This is a test print. This is a test print. This is a test print. This is a test print.&lt;/div&gt;<br />
&lt;a href=&#8221;#&#8221; onclick=&#8221;cmdPrint()&#8221;&gt;Print&lt;/a&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2010/05/27/print-selected-content-from-a-webpage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Smiley Text Editor</title>
		<link>http://tandukar.com/2010/05/26/smiley-text-editor/</link>
		<comments>http://tandukar.com/2010/05/26/smiley-text-editor/#comments</comments>
		<pubDate>Wed, 26 May 2010 10:58:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Text editor]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[smilies text editor]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=184</guid>
		<description><![CDATA[Smiley Text Editor is a simple text editor with a limited features.  This is an inherited from Joomla JCommentes comment-editor.


]]></description>
			<content:encoded><![CDATA[<p>Smiley Text Editor is a simple text editor with a limited features.  This is an inherited from Joomla JCommentes comment-editor.</p>
<p><a href="http://tandukar.com/wp-content/uploads/2010/05/textarea.png"><img class="size-full wp-image-185 alignleft" title="textarea" src="http://tandukar.com/wp-content/uploads/2010/05/textarea.png" alt="" width="492" height="169" /></a></p>
<p><a href="http://tandukar.com/wp-content/uploads/2010/06/Smilies_TextEditor.rar"><img title="Download Smileys Text Editor" src="http://tandukar.com/wp-content/uploads/2009/10/download_icon.png" border="0" alt="Download Smileys Text Edito" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2010/05/26/smiley-text-editor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Customizing Joomla Calendar Setup</title>
		<link>http://tandukar.com/2010/04/29/customizing-joomla-calendar-setup/</link>
		<comments>http://tandukar.com/2010/04/29/customizing-joomla-calendar-setup/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 05:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[joomla calendar]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=164</guid>
		<description><![CDATA[Joomla 1.5 has calendar-setup.js file to setup the joomla calendar as per your requirements.
You can customize jcalendar using a javascript callback functions &#8220;param_default&#8221;.
Here are some examples customizing your joomla calendar.
Disable  all past dates.
Your function where your call the calendar.
function disableDate(d)
{
today = new Date();
difference = d &#8211; today;
days = Math.round(difference/(1000*60*60*24));
if( days &#62; -1 )return false;
return [...]]]></description>
			<content:encoded><![CDATA[<p>Joomla 1.5 has calendar-setup<a href="http://tandukar.com/wp-content/uploads/2010/04/jcalendar.gif"><img class="size-full wp-image-169 alignright" title="jcalendar" src="http://tandukar.com/wp-content/uploads/2010/04/jcalendar.gif" alt="" width="227" height="153" /></a>.js file to setup the joomla calendar as per your requirements.<br />
You can customize jcalendar using a javascript callback functions &#8220;param_default&#8221;.<br />
Here are some examples customizing your joomla calendar.<span id="more-164"></span></p>
<p style="padding-left: 30px;"><span style="text-decoration: underline;"><strong>Disable  all past dates.</strong></span><br />
Your function where your call the calendar.</p>
<blockquote><p><strong><span style="color: #800000;">function</span></strong> disableDate(d)<br />
{<br />
today = <span style="color: #800000;"><strong>new</strong> </span>Date();<br />
difference = d &#8211; today;<br />
days = Math.round(difference/(1000*60*60*24));<br />
<strong><span style="color: #800000;">if</span></strong>( days &gt; -1 )<strong><span style="color: #800000;">return false</span></strong>;<br />
<span style="color: #800000;"><strong>return true</strong></span>;<br />
}<br />
Now replace the following code from calendar-setup.js<br />
<span style="color: #0000ff;"><span style="color: #000000;">param_default(</span><span style="color: #000000;">&#8220;</span>disableFunc<span style="color: #000000;">&#8220;,</span><strong><span style="color: #800000;"> null</span></strong><span style="color: #800000;"><span style="color: #000000;">) </span></span>;</span><br />
to</p>
<p><span style="color: #0000ff;"><span style="color: #000000;">param_default(&#8220;</span>disableFunc<span style="color: #000000;">&#8220;,</span> <span style="color: #000000;">disableDate</span><span style="color: #000000;">) ;<br />
</span></span></p>
<p><span style="text-decoration: underline;"><strong>Enable Only Specific Day</strong></span><strong><span style="color: #800000;"><br />
function</span></strong> disableDate(d)<br />
{<br />
// Enable only Monday of all months<br />
if( d.getDay()==1 ) <strong><span style="color: #800000;">return false </span></strong>;<br />
<strong><span style="color: #800000;">return true </span></strong>;<br />
}<br />
Since the changes in<br />
<span style="color: #000080;"><strong>param_default(&#8220;disableFunc&#8221;, null); </strong></span><br />
in calendar-setup.js will reflect to all the date fields  in your site pages, in order to reflect the customization in specific date field modify above callback function to</p></blockquote>
<blockquote><p><strong><span style="color: #800000;">if</span></strong>(params.inputField==&#8221;<span style="color: #0000ff;">custom_date&#8221;</span>)<br />
{<br />
param_default(&#8220;<span style="color: #0000ff;">disableFunc</span>&#8220;,disableDate);<br />
}<br />
<strong><span style="color: #800000;">else</span></strong><br />
{<br />
param_default(&#8220;<strong><span style="color: #800000;">disableFunc</span></strong>&#8220;,<strong><span style="color: #800000;">null</span></strong>);<br />
}<br />
<strong>custom_date</strong> is my date text filed name</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2010/04/29/customizing-joomla-calendar-setup/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Detect an AJAX Request in PHP</title>
		<link>http://tandukar.com/2010/01/31/detect-an-ajax-request-in-php/</link>
		<comments>http://tandukar.com/2010/01/31/detect-an-ajax-request-in-php/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 08:43:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=136</guid>
		<description><![CDATA[During Ajax request , using the browser like Firefox, the rquested url can be visible thoruhg console which further  can be run from the browser address bar. This can be prevent by PHP&#8217;s $_SERVER['HTTP_X_REQUESTED_WITH'] variable.
If your are using simple javascript no jQuery, Mootools or any other JavaScript API, set the ajax request header to 
xmlHttp.open(&#8220;GET&#8221;,url,true); [...]]]></description>
			<content:encoded><![CDATA[<p>During Ajax request , using the browser like Firefox, the rquested url can be visible thoruhg console which further  can be run from the browser address bar. This can be prevent by PHP&#8217;s $_SERVER['HTTP_X_REQUESTED_WITH'] variable.<span id="more-136"></span></p>
<p><strong>If your are using simple javascript no jQuery, Mootools or any other JavaScript API, set the ajax request header to </strong></p>
<blockquote><p>xmlHttp.open(&#8220;GET&#8221;,url,true); // After this set header as<br />
xmlHttp.setRequestHeader(&#8220;X-Requested-With&#8221;, &#8220;XMLHttpRequest&#8221;);</p></blockquote>
<p>With jQurey,Mootools no need to set this header.</p>
<p><strong>With PHP set this code</strong></p>
<blockquote><p>define(&#8216;IS_AJAX&#8217;, isset($_SERVER['HTTP_X_REQUESTED_WITH']) &amp;&amp; strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == &#8216;xmlhttprequest&#8217;);</p></blockquote>
<p>Now in ajax call page set the code as</p>
<blockquote><p>if(!IS_AJAX){<br />
echo &#8216; Direct Access Is not Allowed&#8217;;<br />
exit;</p>
<p>}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2010/01/31/detect-an-ajax-request-in-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy Jquery Gallery : Slideshow</title>
		<link>http://tandukar.com/2009/11/27/easy-jquery-gallery-slideshow/</link>
		<comments>http://tandukar.com/2009/11/27/easy-jquery-gallery-slideshow/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 05:55:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=125</guid>
		<description><![CDATA[
Easy Jquery gallery: sideshow is easy to use. This is better as many image galleries, sliders, sideshows are complex and hard to customize. A jquery library and simple css construction have made Jquery gallery: sideshow easy to use . Try Demo .

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://tandukar.com/wp-content/uploads/2009/11/slideshow.png"></a><a href="http://tandukar.com/wp-content/uploads/2009/11/slideshow.png"><img class="size-full wp-image-126 aligncenter" title="slideshow" src="http://tandukar.com/wp-content/uploads/2009/11/slideshow.png" alt="slideshow" width="451" height="373" /></a></p>
<p>Easy Jquery gallery: sideshow is easy to use. This is better as many image galleries, sliders, sideshows are complex and hard to customize. A jquery library and simple css construction have made Jquery gallery: sideshow easy to use . <span id="more-125"></span>Try <a title="Jquery Gallery Slideshow" href="http://demo.tandukar.com/slideshow" target="_self">Demo </a>.</p>
<p><a href="http://tandukar.com/wp-content/uploads/2009/11/slideshow.zip"><img title=" Download Easy Jquery Gallery Slideshow" src="http://tandukar.com/wp-content/uploads/2009/10/download_icon.png" border="0" alt=" Download Easy Jquery Gallery Slideshow" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2009/11/27/easy-jquery-gallery-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The beauty of Packing ,Unpacking of Javascript Code</title>
		<link>http://tandukar.com/2009/11/20/the-beauty-of-packing-unpacking-of-javascript-code/</link>
		<comments>http://tandukar.com/2009/11/20/the-beauty-of-packing-unpacking-of-javascript-code/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 05:54:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=116</guid>
		<description><![CDATA[The main purpose of packing is to reduce the file size by compressing , minifying the code.
The most common packing algrithm by Dean Edwards packer code when packed looks like

eval(function(p,a,c,k,e,r){..


, similarly the  unpacker make the extract code packed by Dean Edwards packer  algorithm.
Javascript Packer
Javascript Unpacker
]]></description>
			<content:encoded><![CDATA[<p>The main purpose of packing is to reduce the file size by <strong>compressing</strong> , <strong>minifying</strong> the code.</p>
<p>The most common packing algrithm by <strong><a title="Edwards Packer Tool" href="http://dean.edwards.name/packer/" target="_blank">Dean Edwards packer</a> code</strong> when packed looks like</p>
<blockquote>
<pre><code>eval(function(p,a,c,k,e,r){..
</code></pre>
</blockquote>
<p>, similarly the  <a title="Unpack Tool" href="http://matthewfl.com/unPacker.html" target="_blank">unpacker</a> make the extract code packed by <strong><a title="Edwards Packer Tool" href="http://dean.edwards.name/packer/" target="_blank">Dean Edwards packer</a> </strong> algorithm.</p>
<p style="text-align: left;"><a title="Edwards Packter Tool" href="http://dean.edwards.name/packer/" target="_blank">Javascript Packer</a><br />
<a title="Unpack Tool" href="http://matthewfl.com/unPacker.html" target="_blank">Javascript Unpacker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2009/11/20/the-beauty-of-packing-unpacking-of-javascript-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeigniter Ajax File Upload</title>
		<link>http://tandukar.com/2009/11/15/codeigniter-ajax-file-upload/</link>
		<comments>http://tandukar.com/2009/11/15/codeigniter-ajax-file-upload/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 09:00:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=100</guid>
		<description><![CDATA[Codeignier Ajax File Upload module is easy and simple and build with Codeigniter File Uplaod Library and  AjaxFileUpload &#8211; Jquery Plugin .

File: ajaxupload.php (Contorller).
function doupload(){
$uploadFile = uri_assoc(&#8216;fld&#8217;,2);
$config['upload_path'] = &#8216;./uploads/&#8217;;
$config['allowed_types'] = &#8216;gif&#124;jpg&#124;png&#8217;;
$this-&#62;load-&#62;library(&#8216;upload&#8217;, $config);
if ( ! $this-&#62;upload-&#62;do_upload($uploadFile))
{
$error = array(&#8216;error&#8217; =&#62; $this-&#62;upload-&#62;display_errors());
$this-&#62;load-&#62;view(&#8216;upload_form&#8217;, $error);
}
else
{
$data = array(&#8216;upload_data&#8217; =&#62; $this-&#62;upload-&#62;data());
$this-&#62;load-&#62;view(&#8216;upload_success&#8217;);
}
}

File: upload_form.php(views).
&#60;script type=&#8221;text/javascript&#8221; src=&#8221;&#60;?=base_url()?&#62;/ajaxfileupload.js&#8221;&#62;&#60;/script&#62;
&#60;input type=&#8221;file&#8221; name=&#8221;uploadfile&#8221;  id=&#8221;uploadfile&#8221; /&#62;
&#60;intpy type=&#8221;button&#8221; name=&#8221;upload&#8221; id=&#8221;upload&#8221;  value=&#8221;Upload&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Codeignier Ajax File Upload module is easy and simple and build with <a title="Codigniter File Upload Class" href="http://codeigniter.com/user_guide/libraries/file_uploading.html" target="_blank">Codeigniter File Uplaod Library</a> and  <a title="AjaxFile Upload Plugin" href="http://www.phpletter.com/Our-Projects/AjaxFileUpload/" target="_blank">AjaxFileUpload &#8211; Jquery Plugin</a> .</p>
<p><span id="more-100"></span></p>
<p>File: ajaxupload.php (Contorller).</p>
<blockquote><p>function doupload(){</p>
<p>$uploadFile = uri_assoc(&#8216;fld&#8217;,2);<br />
$config['upload_path'] = &#8216;./uploads/&#8217;;<br />
$config['allowed_types'] = &#8216;gif|jpg|png&#8217;;<br />
$this-&gt;load-&gt;library(&#8216;upload&#8217;, $config);</p>
<p>if ( ! $this-&gt;upload-&gt;do_upload($uploadFile))<br />
{<br />
$error = array(&#8216;error&#8217; =&gt; $this-&gt;upload-&gt;display_errors());</p>
<p>$this-&gt;load-&gt;view(&#8216;upload_form&#8217;, $error);<br />
}<br />
else<br />
{<br />
$data = array(&#8216;upload_data&#8217; =&gt; $this-&gt;upload-&gt;data());</p>
<p>$this-&gt;load-&gt;view(&#8216;upload_success&#8217;);<br />
}</p>
<p>}</p>
</blockquote>
<p>File: upload_form.php(views).</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;&lt;?=base_url()?&gt;/ajaxfileupload.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;input type=&#8221;file&#8221; name=&#8221;uploadfile&#8221;  id=&#8221;uploadfile&#8221; /&gt;<br />
&lt;intpy type=&#8221;button&#8221; name=&#8221;upload&#8221; id=&#8221;upload&#8221;  value=&#8221;Upload&#8221; /&gt;</p>
<p>&lt;script&gt;</p>
<p>$(function(){<br />
$(&#8216;#upload &#8216;).click(function(){</p>
<p>$.ajaxFileUpload<br />
(<br />
{</p>
<p>url:  &#8220;ajaxupload/doupload/fld/uploadfile&#8221;,<br />
secureuri:false,<br />
fileElementId: &#8216;uploadfile&#8217;,<br />
dataType: &#8216;json&#8217;,<br />
success: function (data, status)<br />
{</p>
<p>if(typeof(data.error) != &#8216;undefined&#8217;)<br />
{<br />
if(data.error != &#8221;)<br />
{<br />
alert(data.error);<br />
}else<br />
{<br />
alert(data.msg);<br />
}<br />
}</p>
<p>},<br />
error: function (data, status, e)<br />
{<br />
alert(e);</p>
<p>}<br />
}<br />
);<br />
});<br />
});</p>
<p>&lt;/script&gt;</p>
<p>Dowmlad<a href="http://www.phpletter.com/download_project_version.php?version_id=27" target="_self"> ajaxfileuplaod.js </a>.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2009/11/15/codeigniter-ajax-file-upload/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Javascript Print Page Area</title>
		<link>http://tandukar.com/2009/10/16/javascript-print-page-area/</link>
		<comments>http://tandukar.com/2009/10/16/javascript-print-page-area/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 09:50:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[Javacript Print Page]]></category>
		<category><![CDATA[Javascript Print Area]]></category>
		<category><![CDATA[Javscript]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=81</guid>
		<description><![CDATA[JavaScript Print Page Area  prints the certain portion from you page.
Instead of printing the whole page , this lets you to print only the specified area form the page.
Define the section for print within the page And call the print_sample_report() function to print. Try Demo


You can define the print section with an id.
Example:
&#60;div id=&#8221; print_area&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>JavaScript Print Page Area  prints the certain portion from you page.<br />
Instead of printing the whole page , this lets you to print only the specified area form the page.</p>
<p>Define the section for print within the page And call the print_sample_report() function to print. Try <a title="Print Area" href="http://tandukar.com/demo/printarea" target="_blank">Demo</a><a title="Print Area" href="http://tandukar.com/demo/printarea" target="_blank"><br />
</a></p>
<p style="text-align: center;"><a href="http://tandukar.com/wp-content/uploads/2009/10/Screenshot.png"><img class="size-medium wp-image-82 aligncenter" style="padding-right: 3px; top: 0px;" title="Screenshot" src="http://tandukar.com/wp-content/uploads/2009/10/Screenshot-300x222.png" alt="Screenshot" width="300" height="222" /></a></p>
<p>You can define the print section with an id.<span id="more-81"></span></p>
<p>Example:</p>
<blockquote><p>&lt;div id=&#8221; print_area&#8221; &gt;&lt;!&#8211;  Print content goes here.. &#8211;&gt;&lt;/div&gt; This is the print section within you HTML code</p>
<p>Now call  DoPrintableSections function  to print.</p>
<p>var e = document.getElementById(&#8220;print_area&#8221;); // place the id of you print section as paratmer</p>
<p>function DoPrintableSections(wdth,hght,stylesheets,imgsdir,heading)</p>
<p>{</p>
<p>//center(&#8216;overlayss&#8217;,'mybox&#8217;);  //load lightbix</p>
<p>CreateVirtualCarrier1(&#8220;ContentCarrier&#8221;);</p>
<p>var e = document.getElementById(&#8220;print_area&#8221;);</p>
<p>var content = &#8220;&#8221;;</p>
<p>var cc = document.getElementById(&#8220;ContentCarrier&#8221;);</p>
<p>cc.innerHTML = e.innerHTML;</p>
<p>content = cc.innerHTML;</p>
<p>OpenPreviewPage(content,wdth,&#8217;auto&#8217;,stylesheets,imgsdir,heading);</p>
<p>cc.innerHTML=&#8221;";</p>
<p>}</p>
</blockquote>
<p><a href="http://tandukar.com/wp-content/uploads/2009/10/PrintArea_0.1.zip"><img title="Download Javascript Print Page Area" src="http://tandukar.com/wp-content/uploads/2009/10/download_icon.png" border="0" alt="Download Javascript Print Page Area" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2009/10/16/javascript-print-page-area/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Jquery Form Builder</title>
		<link>http://tandukar.com/2009/10/14/jquery-form-builder/</link>
		<comments>http://tandukar.com/2009/10/14/jquery-form-builder/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 11:02:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[download form builder]]></category>
		<category><![CDATA[dynamic form builer]]></category>
		<category><![CDATA[form builder]]></category>
		<category><![CDATA[from builder plugin]]></category>
		<category><![CDATA[jquery form builder]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tandukar.com/?p=40</guid>
		<description><![CDATA[Jquery Fomr Builer is a web application build in jquery and PHP which lets your to creae a dynamic form in run time.
Each form element are design to create with its specific properties which can be set during building the form.
As your finish to build the form you can download the HTML code of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tandukar.com/wp-content/uploads/2009/10/preview.gif"><img class="size-medium wp-image-50 alignright" style="padding-left: 3px;" title="preview" src="http://tandukar.com/wp-content/uploads/2009/10/preview-300x171.gif" alt="preview" width="300" height="171" /></a>Jquery Fomr Builer is a web application build in jquery and PHP which lets your to creae a dynamic form in run time.</p>
<p>Each form element are design to create with its specific properties which can be set during building the form.</p>
<p>As your finish to build the form you can download the HTML code of the form and paste it to your web page any where you wish.<span id="more-40"></span></p>
<p>Try <a title="Dymanic Form Builder" href="http://www.tandukar.com/demo/formbuilder" target="_blank">demo</a>.</p>
<p><a href="http://tandukar.com/wp-content/uploads/2009/10/formbuilder.zip"><img title="Download Jquery Form Builder" src="http://tandukar.com/wp-content/uploads/2009/10/download_icon.png" border="0" alt="Download Jquery Form Builder" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tandukar.com/2009/10/14/jquery-form-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
