<?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>Neepan Tech Website Development / Training Services</title>
	<atom:link href="http://www.neepantech.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.neepantech.com</link>
	<description>PHP, MYSQL, SEO, DOT NET, Joomla CMS Training BHOPAL</description>
	<lastBuildDate>Wed, 25 May 2011 06:42:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Why PHP Language??</title>
		<link>http://www.neepantech.com/2011/03/why-php-language.html</link>
		<comments>http://www.neepantech.com/2011/03/why-php-language.html#comments</comments>
		<pubDate>Thu, 03 Mar 2011 16:22:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Job opportunity in PHP]]></category>
		<category><![CDATA[PHP career development]]></category>
		<category><![CDATA[PHP Language]]></category>
		<category><![CDATA[Why PHP]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1158</guid>
		<description><![CDATA[PHP Overview
PHP first launched with the name (Personal Home Page) but then changed to PHP Hypertext Preprocessor. PHP is the most used module for the apache web server running over millions of website over internet, PHP was first written by Rasmus Lerdorf and used with Perl and CCI Scripts to track users for there web page. Soon [...]]]></description>
			<content:encoded><![CDATA[<h2><span style="text-decoration: underline;">PHP Overview</span></h2>
<p><strong>PHP </strong>first launched with the name (Personal Home Page) but then changed to PHP Hypertext Preprocessor. PHP is the most used module for the apache web server running over millions of website over internet, PHP was first written by Rasmus Lerdorf and used with Perl and CCI Scripts to track users for there web page. Soon the core group of developer launched the api for it an launched PHP3 in the market. Then rewriting PHP3 by the ZEND transform it to PHP4. PHP4 is much faster then PHP3, more stable and more reliable. Current version of PHP is PHP 5.3.3 in the market.</p>
<p><a href="http://www.neepantech.com/wp-content/uploads/2011/03/php.png"><img class="aligncenter size-medium wp-image-1159" title="php" src="http://www.neepantech.com/wp-content/uploads/2011/03/php-300x157.png" alt="PHP" width="300" height="157" /></a></p>
<h2><span style="text-decoration: underline;">Why PHP??</span></h2>
<p>PHP  has four major advantage for whic it is known <strong>Speed</strong>, <strong>Stability</strong>, <strong>Security </strong>and <strong>Simplicity</strong>.</p>
<p>1) <strong>Speed</strong>: PHP script execute very fast and it do not take much computer resource while executing and easily configured with other OS.</p>
<p>2) <strong>Stability</strong>: PHP is highly Stable Language.  As in every language there are some bugs but with a large PHP developer community there is very less chance for the error.</p>
<p>3) <strong>Security</strong>: PHP language is highly secure as PHP provide much deeper level of security in it&#8217;s .ini files.</p>
<p>4) <strong>Simplicity</strong>: Most of the PHP codes are take from the c language so it is easy for the programmer for more more productive. PHP language cna be easily embedded with the HTML tags or JavaScript so it is more compatible to work with.</p>
<p>5)<strong> Platform Independent</strong>: PHP can run on almost any platform, It is designed for windows, unix and many more platform support PHP.</p>
<p>6) <strong>OpenSource</strong>: A large community of developer fix the bugs not an individual organization.</p>
<p>7) <strong>Freeware</strong>: Completely free to use, just download and start using it.</p>
<h2><span style="text-decoration: underline;"><strong>PHP  career development</strong> (job opportunity)</span></h2>
<p>As there are more the 19 million website over internet use PHP. So there is a large demand of PHP developer to work in the different area as to provide quality service t the costumer. There are very bright future for the PHP developer.  So best wishes for all the PHP developers for there successful career.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2011/03/why-php-language.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Selectors &#8211; Tutorial Complete Sheet</title>
		<link>http://www.neepantech.com/2010/12/jquery-selectors.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-selectors.html#comments</comments>
		<pubDate>Mon, 13 Dec 2010 09:34:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1108</guid>
		<description><![CDATA[jQuery Selectors
Use our excellent jQuery Selector.



Selector
Example
Selects


*
$(&#8220;*&#8221;)
All elements


#id
$(&#8220;#lastname&#8221;)
The element with id=lastname


.class
$(&#8220;.intro&#8221;)
All elements with


element
$(&#8220;p&#8221;)
All p elements


.class.class
$(&#8220;.intro.demo&#8221;)
All elements with the classes &#8220;intro&#8221; and &#8220;demo&#8221;







:first
$(&#8220;p:first&#8221;)
The first p element


:last
$(&#8220;p:last&#8221;)
The last p element


:even
$(&#8220;tr:even&#8221;)
All even tr elements


  dd
$(&#8220;tr:odd&#8221;)
All odd tr elements







:eq(index)
$(&#8220;ul li:eq(3)&#8221;)
The fourth element in a list (index starts at 0)


:gt(no)
$(&#8220;ul li:gt(3)&#8221;)
List elements with an index greater than 3


:lt(no)
$(&#8220;ul li:lt(3)&#8221;)
List elements with [...]]]></description>
			<content:encoded><![CDATA[<h2>jQuery Selectors</h2>
<p>Use our excellent jQuery Selector.</p>
<table border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<th align="left">Selector</th>
<th align="left">Example</th>
<th align="left">Selects</th>
</tr>
<tr>
<td>*</td>
<td>$(&#8220;*&#8221;)</td>
<td>All elements</td>
</tr>
<tr>
<td>#<em>id</em></td>
<td>$(&#8220;#lastname&#8221;)</td>
<td>The element with id=lastname</td>
</tr>
<tr>
<td>.<em>class</em></td>
<td>$(&#8220;.intro&#8221;)</td>
<td>All elements with</td>
</tr>
<tr>
<td><em>element</em></td>
<td>$(&#8220;p&#8221;)</td>
<td>All p elements</td>
</tr>
<tr>
<td>.<em>class</em>.<em>class</em></td>
<td>$(&#8220;.intro.demo&#8221;)</td>
<td>All elements with the classes &#8220;intro&#8221; and &#8220;demo&#8221;</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:first</td>
<td>$(&#8220;p:first&#8221;)</td>
<td>The first p element</td>
</tr>
<tr>
<td>:last</td>
<td>$(&#8220;p:last&#8221;)</td>
<td>The last p element</td>
</tr>
<tr>
<td>:even</td>
<td>$(&#8220;tr:even&#8221;)</td>
<td>All even tr elements</td>
</tr>
<tr>
<td> <img src='http://www.neepantech.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> dd</td>
<td>$(&#8220;tr:odd&#8221;)</td>
<td>All odd tr elements</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:eq(<em>index</em>)</td>
<td>$(&#8220;ul li:eq(3)&#8221;)</td>
<td>The fourth element in a list (index starts at 0)</td>
</tr>
<tr>
<td>:gt(<em>no</em>)</td>
<td>$(&#8220;ul li:gt(3)&#8221;)</td>
<td>List elements with an index greater than 3</td>
</tr>
<tr>
<td>:lt(<em>no</em>)</td>
<td>$(&#8220;ul li:lt(3)&#8221;)</td>
<td>List elements with an index less than 3</td>
</tr>
<tr>
<td>:not(<em>selector</em>)</td>
<td>$(&#8220;input:not(:empty)&#8221;)</td>
<td>All input elements that are not empty</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:header</td>
<td>$(&#8220;:header&#8221;)</td>
<td>All header elements h1, h2 &#8230;</td>
</tr>
<tr>
<td>:animated</td>
<td>$(&#8220;:animated&#8221;)</td>
<td>All animated elements</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:contains(<em>text</em>)</td>
<td>$(&#8220;:contains(&#8216;W3Schools&#8217;)&#8221;)</td>
<td>All elements which contains the text</td>
</tr>
<tr>
<td>:empty</td>
<td>$(&#8220;:empty&#8221;)</td>
<td>All elements with no child (elements) nodes</td>
</tr>
<tr>
<td>:hidden</td>
<td>$(&#8220;p:hidden&#8221;)</td>
<td>All hidden p elements</td>
</tr>
<tr>
<td>:visible</td>
<td>$(&#8220;table:visible&#8221;)</td>
<td>All visible tables</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><em>s1</em>,<em>s2</em>,<em>s3</em></td>
<td>$(&#8220;th,td,.intro&#8221;)</td>
<td>All elements with matching selectors</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>[<em>attribute</em>]</td>
<td>$(&#8220;[href]&#8220;)</td>
<td>All elements with a href attribute</td>
</tr>
<tr>
<td>[<em>attribute</em>=<em>value</em>]</td>
<td>$(&#8220;[href='default.htm']&#8220;)</td>
<td>All elements with a href attribute value equal to &#8220;default.htm&#8221;</td>
</tr>
<tr>
<td>[<em>attribute</em>!=<em>value</em>]</td>
<td>$(&#8220;[href!='default.htm']&#8220;)</td>
<td>All elements with a href attribute value not equal to &#8220;default.htm&#8221;</td>
</tr>
<tr>
<td>[<em>attribute</em>$=<em>value</em>]</td>
<td>$(&#8220;[href$='.jpg']&#8220;)</td>
<td>All elements with a href attribute value ending with &#8220;.jpg&#8221;</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:input</td>
<td>$(&#8220;:input&#8221;)</td>
<td>All input elements</td>
</tr>
<tr>
<td>:text</td>
<td>$(&#8220;:text&#8221;)</td>
<td>All input elements with type=&#8221;text&#8221;</td>
</tr>
<tr>
<td>:password</td>
<td>$(&#8220;:password&#8221;)</td>
<td>All input elements with type=&#8221;password&#8221;</td>
</tr>
<tr>
<td>:radio</td>
<td>$(&#8220;:radio&#8221;)</td>
<td>All input elements with type=&#8221;radio&#8221;</td>
</tr>
<tr>
<td>:checkbox</td>
<td>$(&#8220;:checkbox&#8221;)</td>
<td>All input elements with type=&#8221;checkbox&#8221;</td>
</tr>
<tr>
<td>:submit</td>
<td>$(&#8220;:submit&#8221;)</td>
<td>All input elements with type=&#8221;submit&#8221;</td>
</tr>
<tr>
<td>:reset</td>
<td>$(&#8220;:reset&#8221;)</td>
<td>All input elements with type=&#8221;reset&#8221;</td>
</tr>
<tr>
<td>:button</td>
<td>$(&#8220;:button&#8221;)</td>
<td>All input elements with type=&#8221;button&#8221;</td>
</tr>
<tr>
<td>:image</td>
<td>$(&#8220;:image&#8221;)</td>
<td>All input elements with type=&#8221;image&#8221;</td>
</tr>
<tr>
<td>:file</td>
<td>$(&#8220;:file&#8221;)</td>
<td>All input elements with type=&#8221;file&#8221;</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>:enabled</td>
<td>$(&#8220;:enabled&#8221;)</td>
<td>All enabled input elements</td>
</tr>
<tr>
<td>:disabled</td>
<td>$(&#8220;:disabled&#8221;)</td>
<td>All disabled input elements</td>
</tr>
<tr>
<td>:selected</td>
<td>$(&#8220;:selected&#8221;)</td>
<td>All selected input elements</td>
</tr>
<tr>
<td>:checked</td>
<td>$(&#8220;:checked&#8221;)</td>
<td>All checked input elements<a href="http://"></p>
<p></a><a href="http://"></a><a href="http://"></a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-selectors.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery &#8211; Animation Effect Tutorial</title>
		<link>http://www.neepantech.com/2010/12/jquery-animation-effect-tutorial.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-animation-effect-tutorial.html#comments</comments>
		<pubDate>Mon, 13 Dec 2010 07:58:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[animate effect]]></category>
		<category><![CDATA[jQuery animate library]]></category>
		<category><![CDATA[jQuery animate() function]]></category>
		<category><![CDATA[jQuery Animation Effect]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1103</guid>
		<description><![CDATA[Animation using jQuery Tutorial

Initially we have a div with id box.
Using jquery animate() effect we move the box in right direction.
CSS property (Left: 150px; and position: relative;) is to be focused.
Apply jQuery function animate() to create animation effect.

HTML Code:

&#60;div id=&#8221;box&#8221;&#62;
&#60;p&#62;NeepanTech PHP Training and .NET Training&#60;/p&#62;
&#60;/div&#62;

CSS CODE:
&#60;style type=&#8221;text/css&#8221;&#62;
#box{
position: relative;
width: 300px;
height: 300px;
background-color: yellow;
}
&#60;/style&#62;
jQuery Code:
&#60;script type=&#8221;text/javascript&#8221;&#62;
$(function(){
$(&#8216;#box&#8217;).click(function(){
$(this).animate({&#8220;left&#8221; : &#8220;300px&#8221;,
&#8220;width&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Animation using jQuery Tutorial</span></strong></p>
<ol>
<li>Initially we have a div with id box.</li>
<li>Using jquery animate() effect we move the box in right direction.</li>
<li>CSS property (Left: 150px; and position: relative;) is to be focused.</li>
<li>Apply jQuery function animate() to create animation effect.</li>
</ol>
<p><strong><span style="text-decoration: underline;">HTML Code:</span></strong></p>
<blockquote>
<div id="_mcePaste">&lt;div id=&#8221;box&#8221;&gt;</div>
<div id="_mcePaste">&lt;p&gt;NeepanTech PHP Training and .NET Training&lt;/p&gt;</div>
<div id="_mcePaste">&lt;/div&gt;</div>
</blockquote>
<p><strong><span style="text-decoration: underline;">CSS CODE:</span></strong></p>
<blockquote><p>&lt;style type=&#8221;text/css&#8221;&gt;</p>
<p>#box{</p>
<p>position: relative;</p>
<p>width: 300px;</p>
<p>height: 300px;</p>
<p>background-color: yellow;</p>
<p>}</p>
<p>&lt;/style&gt;</p></blockquote>
<p><strong><span style="text-decoration: underline;">jQuery Code:</span></strong></p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>$(function(){</p>
<p>$(&#8216;#box&#8217;).click(function(){</p>
<p>$(this).animate({&#8220;left&#8221; : &#8220;300px&#8221;,</p>
<p>&#8220;width&#8221; : &#8220;100px&#8221;</p>
<p>}, 2000);</p>
<p>});</p>
<p>});</p>
<p>&lt;/script&gt;</p></blockquote>
<p><strong><span style="text-decoration: underline;"><a href="http://www.neepantech.com/wp-content/coding/tutorial-6-NeepanTech.com.zip">Download Code</a></span></strong><strong> </strong><strong><span style="text-decoration: underline;"><a href="http://www.neepantech.com/wp-content/coding/jquery-tutorial-6/index.html" target="_blank">View Demo</a></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-animation-effect-tutorial.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CSS with Jquery &#8211; toggle()</title>
		<link>http://www.neepantech.com/2010/12/using-css-with-jquery-toggle.html</link>
		<comments>http://www.neepantech.com/2010/12/using-css-with-jquery-toggle.html#comments</comments>
		<pubDate>Mon, 13 Dec 2010 05:29:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[CSS and Jquery]]></category>
		<category><![CDATA[jQuery toggle() Function]]></category>
		<category><![CDATA[jQuery with CSS]]></category>
		<category><![CDATA[Using jQuery in CSS]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1099</guid>
		<description><![CDATA[Tutorial Using CSS in Jquery Function


Our Task is to change the color of the anchor using jquery function and using toggle()  with slideDown().


We have div with id box with all anchor links with red color.


As we click the Click Me button the color of the links change and the toggle() start working.


HTML Code:

&#60;div id=&#8221;box&#8221;&#62;
&#60;a [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Tutorial Using CSS in Jquery Function</span></strong></p>
<ol>
<li>
<div>Our Task is to change the color of the anchor using jquery function and using toggle()  with slideDown().</div>
</li>
<li>
<div>We have div with id box with all anchor links with red color.</div>
</li>
<li>
<div>As we click the Click Me button the color of the links change and the toggle() start working.</div>
</li>
</ol>
<p><strong><span style="text-decoration: underline;">HTML Code:</span></strong></p>
<blockquote>
<div id="_mcePaste">&lt;div id=&#8221;box&#8221;&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;http://www.neepantech.com&#8221;&gt;&lt;img src=&#8221;12.png&#8221; alt=&#8221;NeepanTech Logo&#8221;/&gt;&lt;/a&gt;</div>
<div id="_mcePaste">&lt;/div&gt;</div>
<div id="_mcePaste">&lt;p&gt;&lt;a href=&#8221;#&#8221; id=&#8221;css-color&#8221;&gt;Click Me&lt;/a&gt;&lt;/p&gt;</div>
<div id="_mcePaste">&lt;p&gt;</div>
<div id="_mcePaste">NeepanTech Provide Training in.</div>
<div id="_mcePaste">.NET Technology Training</div>
<div id="_mcePaste">&lt;a href=&#8221;http://www.neepantech.com&#8221;&gt;PHP Technology Training&lt;/a&gt;</div>
<div id="_mcePaste">Search Engine Optimization</div>
<div id="_mcePaste">&lt;a href=&#8221;#&#8221;&gt;WordPress Training&lt;/a&gt;</div>
<div id="_mcePaste">Joomla Training</div>
<div id="_mcePaste">&lt;/p&gt;</div>
</blockquote>
<p><strong><span style="text-decoration: underline;">CSS Code:</span></strong></p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;</p>
<blockquote><p>#box{</p>
<p>display: none;</p>
<p>}</p>
<p>p a{</p>
<p>color: red;</p>
<p>}</p>
<p>&lt;/style&gt;</p></blockquote>
<p><strong><span style="text-decoration: underline;">jQuery Code:</span></strong></p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>$(function(){</p>
<p>$(&#8216;#css-color&#8217;).click(function(){</p>
<p>$(&#8216;#box&#8217;).toggle(&#8220;slideDown()&#8221;);</p>
<p>$(&#8216;p a&#8217;).css(&#8216;color&#8217;, &#8216;blue&#8217;);</p>
<p>});</p>
<p>});</p>
<p>&lt;/script&gt;</p></blockquote>
<p><strong><span style="text-decoration: underline;"><br />
</span></strong><br />
<a href="http://www.neepantech.com/wp-content/coding/tutorial-5-NeepanTech.com.rar">Download Code</a> <a href="http://www.neepantech.com/wp-content/coding/jquery-tutorial-5/index.html" target="_blank">View Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/using-css-with-jquery-toggle.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery effects &#8211; fadeIn, fadeOut, hide, show</title>
		<link>http://www.neepantech.com/2010/12/jquery-effects-fadein-fadeout-hide-show.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-effects-fadein-fadeout-hide-show.html#comments</comments>
		<pubDate>Mon, 13 Dec 2010 03:34:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jQuery effects]]></category>
		<category><![CDATA[jQuery fadeIn]]></category>
		<category><![CDATA[jQuery fadeOut]]></category>
		<category><![CDATA[jQuery hide]]></category>
		<category><![CDATA[jQuery show]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1096</guid>
		<description><![CDATA[Jquery Tutorial &#8211; on fadeIn, fadeOut, hide, show Effects
There are lot of effects in jquery that help your GUI look better, Here is the simple example of how effects take place.

Take a div name box.
insert image inside the div#box
Using CSS hide the div Property (display: none;).
Apply jQuery Effects.

HTML Code:

&#60;div id=&#8221;box&#8221;&#62;
&#60;a href=&#8221;http://www.neepantech.com&#8221;&#62;&#60;img src=&#8221;12.png&#8221; alt=&#8221;NeepanTech Logo&#8221;/&#62;&#60;/a&#62;
&#60;/div&#62;
&#60;a href=&#8221;#&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Jquery Tutorial &#8211; on fadeIn, fadeOut, hide, show Effects</span></strong></p>
<p>There are lot of effects in jquery that help your GUI look better, Here is the simple example of how effects take place.</p>
<ol>
<li>Take a div name box.</li>
<li>insert image inside the div#box</li>
<li>Using CSS hide the div Property (display: none;).</li>
<li>Apply jQuery Effects.</li>
</ol>
<p><strong><span style="text-decoration: underline;">HTML Code:</span></strong></p>
<blockquote>
<div id="_mcePaste">&lt;div id=&#8221;box&#8221;&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;http://www.neepantech.com&#8221;&gt;&lt;img src=&#8221;12.png&#8221; alt=&#8221;NeepanTech Logo&#8221;/&gt;&lt;/a&gt;</div>
<div id="_mcePaste">&lt;/div&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;#&#8221; id=&#8221;showlogo&#8221;&gt;Show&lt;/a&gt;&lt;br /&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;#&#8221; id=&#8221;hidelogo&#8221;&gt;Hide&lt;/a&gt;&lt;br /&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;#&#8221; id=&#8221;fadelogo&#8221;&gt;FadeIn&lt;/a&gt;&lt;br /&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;#&#8221; id=&#8221;fadeoutlogo&#8221;&gt;FadeOut&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</div>
<div id="_mcePaste">&lt;h1&gt;Neepantech.com&lt;/h1&gt;</div>
<div id="_mcePaste">&lt;a href=&#8221;http://www.neepantech.com/courses/php-and-mysql-training-course&#8221;&gt;PHP Training&lt;/a&gt;</div>
</blockquote>
<p><strong><span style="text-decoration: underline;">Css Code:</span></strong></p>
<blockquote><p>&lt;style type=&#8221;text/css&#8221;&gt;</p>
<p>#box{</p>
<p>display: none;</p>
<p>}&lt;/style&gt;</p></blockquote>
<p><strong><span style="text-decoration: underline;">jQuery Code:</span></strong></p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>$(function(){</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#showlogo&#8217;).click(function(){</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#box&#8217;).show(2000);</p>
<p><span style="white-space: pre;"> </span>});</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#hidelogo&#8217;).click(function(){</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#box&#8217;).hide(2000);</p>
<p><span style="white-space: pre;"> </span>});</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#fadelogo&#8217;).click(function(){</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#box&#8217;).fadeIn(2000);</p>
<p><span style="white-space: pre;"> </span>});</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#fadeoutlogo&#8217;).click(function(){</p>
<p><span style="white-space: pre;"> </span>$(&#8216;#box&#8217;).fadeOut(2000);</p>
<p><span style="white-space: pre;"> </span>});</p>
<p>});</p>
<p>&lt;/script&gt;</p></blockquote>
<p><strong><span style="text-decoration: underline;"><a href="http://www.neepantech.com/wp-content/coding/tutorial-4-NeepanTech.com.rar">Download Code</a></span></strong> <a href="http://www.neepantech.com/wp-content/coding/jquery-tutorial-4/index.html" target="_blank"> <strong><span style="text-decoration: underline;">Show Demo</span></strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-effects-fadein-fadeout-hide-show.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery twitter like Login &#8211; Simple Example</title>
		<link>http://www.neepantech.com/2010/12/jquery-twitter-like-login-simple-example.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-twitter-like-login-simple-example.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 22:08:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/2010/12/jquery-twitter-like-login-simple-example.html</guid>
		<description><![CDATA[Jquery Tutorial &#8211; Twitter Like Button

Create a div navigation for the menu.
Create a div login-window for the login.
With the help of CSS Property (display: inline) hide the div.
Call the div using the jquery.

If you want jquery to be executed after the document is completed loaded then use.
$(function(){
});
CSS Coding
 

&#60;style type=&#8221;text/css&#8221;&#62;
*{
margin: 0px;
paddin: 0px;
}
body{
width: 900px;
margin: 0 auto;
}
label{
width: [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Jquery Tutorial &#8211; Twitter Like Button</span></strong></p>
<ol>
<li>Create a div navigation for the menu.</li>
<li>Create a div login-window for the login.</li>
<li>With the help of CSS Property (display: inline) hide the div.</li>
<li>Call the div using the jquery.</li>
</ol>
<p>If you want jquery to be executed after the document is completed loaded then use.</p>
<blockquote><p>$(function(){<br />
});</p></blockquote>
<p><strong><span style="text-decoration: underline;">CSS Coding</span></strong></p>
<p><strong> </strong></p>
<blockquote>
<div id="_mcePaste"><span style="text-decoration: underline;">&lt;style type=&#8221;text/css&#8221;&gt;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">*{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">margin: 0px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">paddin: 0px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">body{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">width: 900px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">margin: 0 auto;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">label{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">width: 100px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">display: block;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">float: left;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">text-align: right;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">margin: 5px 20px 5px 0;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">#frame{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">width: 50px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">left: 120px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">position: relative;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">br{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">clear: left;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">#login-window{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">width: 500px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">margin:0px auto;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">padding: 50px 0;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">background-color: #dfdfdf;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">display: none;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">ul{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">margin: 30px 0 0 0;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">background-color: #dfdfdf;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">li{</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">display: inline;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">padding: 0 30px;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">border-right: 2px solid blue;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">}</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;">&lt;/style&gt;</span></div>
<div id="_mcePaste"><span style="text-decoration: underline;"><br />
</span></div>
</blockquote>
<p><strong><span style="text-decoration: underline;">Jquery Coding</span></strong></p>
<p><span style="text-decoration: underline;"> </span></p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>$(function(){</p>
<p>$(&#8216;a#login&#8217;).click(function(){</p>
<p>$(&#8216;#login-window&#8217;).slideDown(2000);</p>
<p>});</p>
<p>});</p>
<p>&lt;/script&gt;</p></blockquote>
<p><strong><a href="http://www.neepantech.com/wp-content/coding/tutorial-3-NeepanTech.com.rar"> Download Code</a> <span style="color: #000080;"> <a href="http://www.neepantech.com/wp-content/coding/jquery-tutorial-3/index.html" target="_blank"> View Code</a></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-twitter-like-login-simple-example.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery  Tutorial 2 &#8211; Simple fadeOut</title>
		<link>http://www.neepantech.com/2010/12/jquery-tutorial-2-simple-fadeout.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-tutorial-2-simple-fadeout.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 21:08:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/2010/12/jquery-tutorial-2-simple-fadeout.html</guid>
		<description><![CDATA[Jquery Tutorial 2
Simple Example of fadeout of div#box using jquery.

Create a div with id box.
Using CSS define height and width of the div.
Apply Jquery.

If you want jquery to be executed after the document is completed loaded then use
$(function(){
});
Select anchor tag. onclick anchor tag fade out the div with id box.
$(&#8216;a&#8217;).click(function(){
$(&#8216;#box&#8217;).fadeOut(3000);
});
Download the Code View Code
]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Jquery Tutorial 2</span></strong></p>
<p>Simple Example of fadeout of div#box using jquery.</p>
<ol>
<li>Create a div with id box.</li>
<li>Using CSS define height and width of the div.</li>
<li>Apply Jquery.</li>
</ol>
<p>If you want jquery to be executed after the document is completed loaded then use</p>
<blockquote><p>$(function(){</p>
<p>});</p></blockquote>
<p>Select anchor tag. onclick anchor tag fade out the div with id box.</p>
<blockquote><p>$(&#8216;a&#8217;).click(function(){</p>
<p>$(&#8216;#box&#8217;).fadeOut(3000);</p>
<p>});</p></blockquote>
<p style="text-align: left;"><span style="color: #000080;"><strong><a href="http://www.neepantech.com/wp-content/coding/jquery-tutorial-2-NeepanTech.com.rar">Download the Code</a> <a href="http://www.neepantech.com/wp-content/coding/jquery-tutorial-2/index.html" target="_blank">View Code</a></strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-tutorial-2-simple-fadeout.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Tutorial &#8211; 1 Configure Library</title>
		<link>http://www.neepantech.com/2010/12/jquery-tutorial-1-configure-library.html</link>
		<comments>http://www.neepantech.com/2010/12/jquery-tutorial-1-configure-library.html#comments</comments>
		<pubDate>Sun, 12 Dec 2010 20:30:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/2010/12/jquery-tutorial-1-configure-library.html</guid>
		<description><![CDATA[Jquery Tutorial 1
Before start to the jquery coding you need to first download the jquery library from jquery official website.
Configure Jquery

Download library file.
Adding .js file in the head section of the HTML page.

&#60;head&#62;
&#60;title&#62;Jquery Tutorial &#8211; Configure Jquery&#60;/title&#62;
&#60;script src=&#8221;jquery-lib.js&#8221;  type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;
&#60;/head&#62;
Download Code
]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Jquery Tutorial 1</strong></span></p>
<p>Before start to the jquery coding you need to first download the jquery library from <a title="jquery" href="http://jquery.com" target="_blank">jquery</a> official website.</p>
<p><strong><span style="text-decoration: underline;">Configure Jquery</span></strong></p>
<ul>
<li>Download library file.</li>
<li>Adding .js file in the head section of the HTML page.</li>
</ul>
<blockquote><p>&lt;head&gt;</p>
<p>&lt;title&gt;Jquery Tutorial &#8211; Configure Jquery&lt;/title&gt;</p>
<p>&lt;script src=&#8221;jquery-lib.js&#8221;  type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;/head&gt;</p></blockquote>
<p><a href="http://www.neepantech.com/wp-content/coding/tutorial-1-NeepanTech.com.rar">Download Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/12/jquery-tutorial-1-configure-library.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Request Training Report</title>
		<link>http://www.neepantech.com/2010/11/request-training-report.html</link>
		<comments>http://www.neepantech.com/2010/11/request-training-report.html#comments</comments>
		<pubDate>Wed, 24 Nov 2010 09:31:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=1060</guid>
		<description><![CDATA[Just Fill the form below and we will send the Training Report on your Email. Only for NeepanTech students.

For any further enquiries, Contact: 9926255956
]]></description>
			<content:encoded><![CDATA[<p><strong>Just Fill the form below and we will send the Training Report on your Email. Only for NeepanTech students.<br />
</strong><br />
[contact-form]</p>
<p><strong>For any further enquiries, Contact: 9926255956</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/11/request-training-report.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thetech4you.com is developed by NeepanTech Student</title>
		<link>http://www.neepantech.com/2010/09/thetech4you-com-is-developed-by-neepantech-student.html</link>
		<comments>http://www.neepantech.com/2010/09/thetech4you-com-is-developed-by-neepantech-student.html#comments</comments>
		<pubDate>Mon, 06 Sep 2010 04:19:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bhabha Engg.Research Institute Bhopal]]></category>
		<category><![CDATA[Madhya Pradesh]]></category>
		<category><![CDATA[mp tourism]]></category>
		<category><![CDATA[thetech4you.com]]></category>

		<guid isPermaLink="false">http://www.neepantech.com/?p=962</guid>
		<description><![CDATA[NeepanTech Student from Bhabha Engg.Research Institute Bhopal has develop thetech4you.com website.

This website is developed with the aim of exploring Madhya Pradesh in new way and by new thought.This website will help you visit different district tourist place in M.P ,This website covers  road maps ,railway road map, physical map of M.P.and you can understand culture of Madhya Pradesh , Festival of Madhya Pradesh , [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NeepanTech</strong> Student from Bhabha Engg.Research Institute Bhopal has develop <strong><a title="thetech4you.com" href="http://www.thetech4you.com" target="_blank">thetech4you.com</a></strong> website.</p>
<div></div>
<div>This website is developed with the aim of exploring <strong>Madhya Pradesh</strong> in new way and by new thought.This website will help you visit different district tourist place in M.P ,This website covers  road maps ,railway road map, physical map of M.P.and you can understand culture of Madhya Pradesh , Festival of Madhya Pradesh , Arts and craft of mp and history of mp.This site mostly focus on tourism places for tourist to visit whole Madhya Pradesh show for information about mp tourism visit <strong>www.thetech4you.com</strong> which is dedicated by young engineer&#8217;s.</div>
<div></div>
<div><a href="http://www.neepantech.com/wp-content/uploads/2010/09/Ashok-220x300.jpg"><img class="alignleft size-thumbnail wp-image-963" title="Ashok-220x300" src="http://www.neepantech.com/wp-content/uploads/2010/09/Ashok-220x300-150x150.jpg" alt="" width="150" height="150" /></a></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div>Name:Ashok choudhary</div>
<div id="_mcePaste">college :Bhabha Engg.Research Institute Bhopal</div>
<div></div>
<div><a href="http://www.neepantech.com/wp-content/uploads/2010/09/aditya-227x300.jpg"><img class="alignleft size-thumbnail wp-image-964" title="aditya-227x300" src="http://www.neepantech.com/wp-content/uploads/2010/09/aditya-227x300-150x150.jpg" alt="" width="150" height="150" /></a></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div id="_mcePaste">Name:Aditya Tiwari</div>
<div id="_mcePaste">college :Bhabha Engg.Research Institute Bhopal</div>
<p style="text-align: center;"><strong>NeepanTech wish them all the best for their future. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neepantech.com/2010/09/thetech4you-com-is-developed-by-neepantech-student.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

