<?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>Rsilitech &#187; Programming</title>
	<atom:link href="/category/programming-of-c-c-java-ectc/feed/" rel="self" type="application/rss+xml" />
	<link>https://rslink.in</link>
	<description>Your Search Destination</description>
	<lastBuildDate>Mon, 25 Feb 2013 08:20:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Learn C With Me Beginners C Tutorial If Statement</title>
		<link>https://rslink.in/learn-c-with-me-beginners-c-tutorial-if-statement/</link>
		<comments>https://rslink.in/learn-c-with-me-beginners-c-tutorial-if-statement/#comments</comments>
		<pubDate>Thu, 19 Jul 2012 05:34:06 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=426</guid>
		<description><![CDATA[<p>//w.a.p to take quantity and price per item and if quantity is greater than 1000 then 10% discount will be gievn. #include #include void main() { int qnt,dis=10; float rate,total=0; printf(&#8220;Enter Quantity:&#8221;); scanf(&#8220;%d&#8221;,&#038;qnt); printf(&#8220;Enter rate&#8221;); scanf(&#8220;%f&#8221;,&#038;rate); if(qnt>1000) { printf(&#8220;Total Rate Is :%f&#8221;,total=((qnt*rate)-(qnt*rate*dis/100))); } else { printf(&#8220;Quantity is less than 1000&#8243;); } getch(); } /*w.a.p to [...]</p><p>The post <a href="/learn-c-with-me-beginners-c-tutorial-if-statement/">Learn C With Me Beginners C Tutorial If Statement</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>//w.a.p to take quantity and price per item and if quantity is greater than 1000 then 10% discount will be gievn.</p>
<p>#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{</p>
<p>	int qnt,dis=10;<br />
	float rate,total=0;<br />
	printf(&#8220;Enter Quantity:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;qnt);<br />
	printf(&#8220;Enter rate&#8221;);<br />
	scanf(&#8220;%f&#8221;,&#038;rate);<br />
	if(qnt>1000)<br />
	{<br />
		printf(&#8220;Total Rate Is :%f&#8221;,total=((qnt*rate)-(qnt*rate*dis/100)));<br />
	}<br />
	else<br />
	{<br />
		printf(&#8220;Quantity is less than 1000&#8243;);<br />
	}</p>
<p> getch();<br />
}<br />
/*w.a.p to take current year and joining year of an employee in a organization.<br />
if service year is greater than 3 then the employee will get Rs.2500/- bonus and<br />
service  year is less than no bonus.*/</p>
<p>#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{<br />
	int cy,jy,ty,bonus=2500;<br />
	clrscr();<br />
	printf(&#8220;Enter Your Current Year:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;cy);<br />
	printf(&#8220;Enter Youe Joining Year:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;jy);<br />
	ty=cy-jy;<br />
	if(ty>3)<br />
	{<br />
		printf(&#8220;Bonus=%d&#8221;,bonus);<br />
	}<br />
	else<br />
	{<br />
		printf(&#8220;Current Year is less than 3 year&#8221;);<br />
	}<br />
	getch();<br />
}<br />
/*if his basic salary is less than Rs.1500,then HRA=10% of basic salary and<br />
DA=90% of basic salary.if his salary is either equal equal to or above Rs.1500,then HRA=Rs.500 and DA=98% of basic salary.<br />
if the employee&#8217;s salary is input through the keyboard write a program to find his gross salary.<br />
his gross salary.*/</p>
<p>#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{<br />
	float sal,hra=0,da=0,grosssal=0;<br />
	clrscr();<br />
	printf(&#8220;Enter Salary:&#8221;);<br />
	scanf(&#8220;%f&#8221;,&#038;sal);<br />
	if(sal<1500)<br />
	{<br />
		hra=sal*10/100;<br />
		da=sal*90/100;<br />
	}<br />
	else<br />
	{<br />
		hra=500;<br />
		da=sal*98/100;<br />
	}<br />
	grosssal=grosssal+hra+da;<br />
	printf("Gross Salary is %f",grosssal);<br />
	getch();</p>
<p>}<br />
/*The marks obtained by a studentin 5 different subjects are input through the keyboard.The student<br />
gets a division as per the following rules:<br />
percentage above or equal to 60-1st division<br />
percentage between 50 and 59-2nd division<br />
percentage between 40 and 49-3rd division<br />
percentage less than 40-Fail*/</p>
<p>#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{<br />
	int sub1,sub2,sub3,sub4,sub5;<br />
	int tol=0,per=0;<br />
	clrscr();<br />
	printf(&#8220;Enter marks of 1st subject:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;sub1);<br />
	printf(&#8220;Enter marks of 2nd subject:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;sub2);<br />
	printf(&#8220;Enter marks of 3rd subject:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;sub3);<br />
	printf(&#8220;Enter marks of 4th subject:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;sub4);<br />
	printf(&#8220;Enter marks of 5th subject:&#8221;);<br />
	scanf(&#8220;%d&#8221;,&#038;sub5);</p>
<p>	tol=(sub1+sub2+sub3+sub4+sub5);<br />
	per=tol/5;</p>
<p>	if (per>=60)<br />
	{<br />
		printf(&#8220;1st Division&#8221;);<br />
	}<br />
	else if (per>=50)<br />
	{<br />
		printf(&#8220;2nd Division&#8221;);<br />
	}<br />
	else if (per>=40)<br />
	{<br />
		printf(&#8220;3rd Division&#8221;);<br />
	}<br />
	else<br />
	{<br />
		printf(&#8220;Fail&#8221;);<br />
	}<br />
	getch();</p>
<p>}<br />
//w.a.p to take two numbers and check both numbers are equal or not if not then find which number is greater//</p>
<p>#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{<br />
	float num1,num2;<br />
	clrscr();<br />
	printf(&#8220;Enter 1st Number:&#8221;);<br />
	scanf(&#8220;%f&#8221;,&#038;num1);<br />
	printf(&#8220;Enter 2nd Number:&#8221;);<br />
	scanf(&#8220;%f&#8221;,&#038;num2);<br />
	if(num1==num2)<br />
	{<br />
		printf(&#8220;Both numbers are equal&#8221;);<br />
	}<br />
	else if(num1>num2)<br />
	{<br />
		printf(&#8220;%f is greater number&#8221;,num1);<br />
	}<br />
	else<br />
	{<br />
		printf(&#8220;%f is greater number&#8221;,num2);<br />
	}<br />
	getch();<br />
}</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/learn-c-with-me-beginners-c-tutorial-if-statement/">Learn C With Me Beginners C Tutorial If Statement</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/learn-c-with-me-beginners-c-tutorial-if-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn C With Me Beginners C Tutorial While Loop</title>
		<link>https://rslink.in/learn-c-with-me-beginners-c-tutorial-while-loop/</link>
		<comments>https://rslink.in/learn-c-with-me-beginners-c-tutorial-while-loop/#comments</comments>
		<pubDate>Thu, 19 Jul 2012 05:31:50 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=424</guid>
		<description><![CDATA[<p>w.a.p to display your name 5 times #include #include void main() { int i=1; clrscr(); while(i</p><p>The post <a href="/learn-c-with-me-beginners-c-tutorial-while-loop/">Learn C With Me Beginners C Tutorial While Loop</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>w.a.p to display your name 5 times<br />
#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{<br />
	int i=1;<br />
	clrscr();<br />
	while(i<=5)<br />
	{<br />
		printf("Type Your Name In This Place\n");<br />
		i++;<br />
	}<br />
	getch();</p>
<p>}<br />
//w.a.p to find the sum of 10 numbers using while loop//<br />
#include<stdio.h><br />
#include<conio.h><br />
void main()<br />
{<br />
	int i=1,sum=0;<br />
	clrscr();<br />
	while(i<=10)<br />
	{<br />
		sum=sum+i;<br />
		i++;<br />
	}<br />
	printf(&#8220;Result is : %d&#8221;,sum);<br />
	getch();</p>
<p>}</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/learn-c-with-me-beginners-c-tutorial-while-loop/">Learn C With Me Beginners C Tutorial While Loop</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/learn-c-with-me-beginners-c-tutorial-while-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn C With Me Beginners C Tutorial</title>
		<link>https://rslink.in/learn-c-with-me-beginners-c-tutorial/</link>
		<comments>https://rslink.in/learn-c-with-me-beginners-c-tutorial/#comments</comments>
		<pubDate>Mon, 16 Jul 2012 05:49:04 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=397</guid>
		<description><![CDATA[<p>//w.a.p to take two numbers and performs addition,subtraction,multiplication,division. #include&#60;stdio.h&#62; #include&#60;conio.h&#62; void main() { float a,b; clrscr(); printf(&#8220;enter 1st number&#8221;); scanf(&#8220;%f&#8221;,&#38;a); printf(&#8220;enter 2nd number&#8221;); scanf(&#8220;%f&#8221;,&#38;b); printf(&#8220;Result of Addition is %f&#8221;,a+b); printf(&#8220;\nResult of Subtraction is %f&#8221;,a-b); printf(&#8220;\nResult of Multiplication is %f&#8221;,a*b); printf(&#8220;\nResult of division is %f&#8221;,a/b); getch(); } //w.a.p to take Celious Temprature and convert to Feranhite [...]</p><p>The post <a href="/learn-c-with-me-beginners-c-tutorial/">Learn C With Me Beginners C Tutorial</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>//w.a.p to take two numbers and performs addition,subtraction,multiplication,division.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
float a,b;<br />
clrscr();<br />
printf(&#8220;enter 1st number&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;a);<br />
printf(&#8220;enter 2nd number&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;b);<br />
printf(&#8220;Result of Addition is %f&#8221;,a+b);<br />
printf(&#8220;\nResult of Subtraction is %f&#8221;,a-b);<br />
printf(&#8220;\nResult of Multiplication is %f&#8221;,a*b);<br />
printf(&#8220;\nResult of division is %f&#8221;,a/b);<br />
getch();</p>
<p>}</p>
<p>//w.a.p to take Celious Temprature and convert to Feranhite Temprature.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
float fer,cel;<br />
clrscr();<br />
printf(&#8220;Enter Celious Temprature&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;cel);<br />
fer=(9*cel+160)/5;<br />
printf(&#8220;Feranhite temprature is:%f&#8221;,fer);<br />
getch();</p>
<p>}</p>
<p>//w.a.p to take a number and check the number is even or odd<br />
#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
int num;<br />
clrscr();<br />
printf(&#8220;Enter a number:&#8221;);<br />
scanf(&#8220;%d&#8221;,&amp;num);<br />
if(num%2==0)<br />
{<br />
printf(&#8220;%d is Even&#8221;,num);<br />
}<br />
else<br />
{<br />
printf(&#8220;%d is Odd&#8221;,num);</p>
<p>}<br />
getch();<br />
}</p>
<p>//w.a.p to take two number and check the number is equal or not.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
float num1,num2;<br />
clrscr();<br />
printf(&#8220;Enter 1st number:&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;num1);<br />
printf(&#8220;Enter 2nd number:&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;num2);<br />
if (num1==num2)<br />
{<br />
printf(&#8220;both numbers are equal&#8221;);<br />
}<br />
else<br />
{<br />
printf(&#8220;both numbers are not equal&#8221;);</p>
<p>}<br />
getch();<br />
}</p>
<p>//w.a.p to take Feranhite Temprature and convert to Celious Temprature.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
float cel,fer;<br />
clrscr();<br />
printf(&#8220;Enter Feranhite Temprature:&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;fer);<br />
cel=(5*fer-160)/9;<br />
printf(&#8220;Temprature of Celious is:%f&#8221;,cel);<br />
getch();<br />
}</p>
<p>//w.a.p to take two number and check the number is greater or smaller</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
float num1,num2;<br />
clrscr();<br />
printf(&#8220;Enter 1st number:&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;num1);<br />
printf(&#8220;Enter 2nd number:&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;num2);<br />
if (num1&gt;num2)<br />
{<br />
printf(&#8220;%f is greater and %f is smaller&#8221;,num1,num2);<br />
}<br />
else<br />
{<br />
printf(&#8220;%f is greater and %f is smaller&#8221;,num2,num1);<br />
}<br />
getch();<br />
}</p>
<p>//w.a.p to take principle,time,rate and find interest</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
float pri,tim,rat,interest;<br />
clrscr();<br />
printf(&#8220;Enter Principle&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;pri);<br />
printf(&#8220;Enter Time&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;tim);<br />
printf(&#8220;Enter Rate&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;rat);<br />
interest=(pri*tim*rat)/100;<br />
printf(&#8220;Interest is : %f&#8221;,interest);<br />
getch();<br />
}</p>
<p>//w.a.p to describe about c language.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
clrscr();</p>
<p>printf(&#8220;\n\&#8221;C is a Programming language devloped at AT &amp; T&#8217;s Bell Laboratories of USA in 1972.it was designed and written by a Dennis Ritchie\&#8221;");<br />
getch();<br />
}</p>
<p>//w.a.p to take a number and a power and find result.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
#include&lt;math.h&gt;<br />
void main()<br />
{<br />
float num,pw,res=0;<br />
clrscr();<br />
printf(&#8220;Enter Number:&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;num);<br />
printf(&#8220;Enter Power&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;pw);<br />
res=pow(num,pw);<br />
printf(&#8220;Result is:%f&#8221;,res);<br />
getch();<br />
}</p>
<p>//w.a.p to take a number and find square root of a number.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
#include&lt;math.h&gt;<br />
void main()<br />
{<br />
float a;<br />
clrscr();<br />
printf(&#8220;enter a number&#8221;);<br />
scanf(&#8220;%f&#8221;,&amp;a);<br />
printf(&#8220;Square root of a number is %f&#8221;,sqrt(a));<br />
getch();</p>
<p>}</p>
<p>//w.a.p to print your name and address.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
clrscr();</p>
<p>printf(&#8220;Name:abc\nAdress:bcv&#8221;);<br />
getch();<br />
}</p>
<p>//w.a.p to take a number and check the number is two digit or not.</p>
<p>#include&lt;stdio.h&gt;<br />
#include&lt;conio.h&gt;<br />
void main()<br />
{<br />
int num;<br />
clrscr();<br />
printf(&#8220;Enter 1st number:&#8221;);<br />
scanf(&#8220;%d&#8221;,&amp;num);</p>
<p>if ((num&gt;9)&amp;&amp;(num&lt;100))<br />
{<br />
printf(&#8220;%d is two digit&#8221;,num);<br />
}<br />
else<br />
{<br />
printf(&#8220;%d is not two digit&#8221;,num);<br />
}<br />
getch();<br />
}</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/learn-c-with-me-beginners-c-tutorial/">Learn C With Me Beginners C Tutorial</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/learn-c-with-me-beginners-c-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Important firefox plugins that every web designer must have</title>
		<link>https://rslink.in/important-firefox-plugins-that-every-web-designer-must-have/</link>
		<comments>https://rslink.in/important-firefox-plugins-that-every-web-designer-must-have/#comments</comments>
		<pubDate>Sun, 15 Jul 2012 14:58:22 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=377</guid>
		<description><![CDATA[<p>9 important firefox plugins that every web designer must have 0digg Share Font Finder A useful extension with which you can identify the type/ size of font used in selected text. It also gives the color, font size, font family, line height, letter spacing and much more…. Fire FTP A simple, perfect, secure brower based [...]</p><p>The post <a href="/important-firefox-plugins-that-every-web-designer-must-have/">Important firefox plugins that every web designer must have</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>9 important firefox plugins that every web designer must have</p>
<p>0digg<br />
Share</p>
<p>Font Finder<br />
A useful extension with which you can identify the type/ size of font used in selected text. It also gives the color, font size, font family, line height, letter spacing and much more….</p>
<p>Fire FTP<br />
A simple, perfect, secure brower based ftp client that every web designer should have.</p>
<p>IE Tabhttp:<br />
Internet Explorer is also one of the famous browsers and still there are 30 % of the world using Internet Explorer for there daily browsing. You need to keep all rowsers in mind while desinging a website. IE Tab is an extension it can exactly gives the funtionality of internet explorer in firefox. If you want to test your site in Internet explorer there is no need to open Intenet Explorer just open IE tab in firefox</p>
<p>Browser window resizer</p>
<p>Browser window resizer a useful plugin in which you can test you site in various resolution without change the resolution of you r system</p>
<p>Measure it<br />
While designing alignment of images/text is a challenging job, in this context measure it comes into picture. you can overlay a ruler and check the dimensions of your required area easily.</p>
<p>Fireshot.<br />
FireShot is an advanced screen capture add-on for Firefox. In addition to giving you the ability to capture an entire web page, FireShot also allows you to add add graphics and notes directly to your screen captures.</p>
<p>Colorzilla<br />
A very useful plugin one should have. you can find out color used in any part of the web page. It automatically copies the color in differt formats like RGB, HEX etc.</p>
<p>Firebug.<br />
This is the most important plugin. you can debug javascipt, change HTML propeties , inspect elements. find the properties, debug, inspect CSS, DOM features and a lot.</p>
<p>Lorel ipsum generator.<br />
It generates dummy text instantly.</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/important-firefox-plugins-that-every-web-designer-must-have/">Important firefox plugins that every web designer must have</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/important-firefox-plugins-that-every-web-designer-must-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Linux Commands for WordPress Users</title>
		<link>https://rslink.in/essential-linux-commands-for-wordpress-users/</link>
		<comments>https://rslink.in/essential-linux-commands-for-wordpress-users/#comments</comments>
		<pubDate>Sat, 14 Jul 2012 16:45:04 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Php & MySql]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=373</guid>
		<description><![CDATA[<p>If you have limited Unix / Linux experience but are starting to use the shell to manage your WordPress installation, here are some handy command line tricks that will help you do common things a lot faster. Also, the commands listed here aren’t specific to any shell so you should be able to use them [...]</p><p>The post <a href="/essential-linux-commands-for-wordpress-users/">Essential Linux Commands for WordPress Users</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>If you have limited Unix / Linux experience but are starting to use the shell to manage your WordPress installation, here are some handy command line tricks that will help you do common things a lot faster. Also, the commands listed here aren’t specific to any shell so you should be able to use them in any Linux environment.</p>
<p>Handy Command Line Tricks for Linux<br />
1. Linux comes in several flavors. The following commands will help you determine which Linux distro is installed on your host, what’s the version of your Linux kernel, the CPU model, processor speed, etc.</p>
<p>$ cat /etc/issue<br />
$ cat /proc/version<br />
$ cat /proc/cpuinfo<br />
2. Find the total amount of RAM available on your Linux box and how much is free.</p>
<p>$ free -mto<br />
3. The command cd.. takes you up one directory level but cd – will move you to the previous working directory. Or use the command pwd to print the full path of the current directory that you can copy-paste later into the shell.</p>
<p>$ cd –<br />
$ pwd<br />
4. The command history will show a list of all the recently executed commands and each will have an associated number. Use ! to execute that command again. Or, if the history is too long, use grep to search a particular command.</p>
<p>$ !<command number=""></command><br />
$ history | grep<br />
5. You can remove any particular command from the shell history by number.</p>
<p>$ history – d <command number=""></command><br />
6. If you made an error while typing a command name, just enter the correct command name and then use !* to reuse all the previous arguments.</p>
<p>$ <command></command> !*<br />
7. Re-run a command but after replacing the text abc in the command with xyz.</p>
<p>$ ^abc^xyz<br />
8. This will list the size of all sub-folders of a directory in KB, MB or GB.</p>
<p>$ du – sh */<br />
9. A better version of the ls command that displays file sizes in KB and MB.</p>
<p>$ ls – gho<br />
10. You can use man <command></command> to learn more about the syntax of a command but what if you don’t remember the name of the command itself? Use apropos then.</p>
<p>$ apropos<br />
Also see: Print Files on Linux Remotely using Dropbox</p>
<p>11. Compare the content of two text files to see what has changed.</p>
<p>$ diff wp-config.php wp-config.php.old<br />
12. Find lines that are common in any two text files.</p>
<p>$ grep – Fx – f file-A.html file-B.html<br />
13. Compare the content of two directories recursively.</p>
<p>$ diff – urp /old-wp-directory /new-wp-directory<br />
14. Find all files under the current directory that are larger than 10 MB in size.</p>
<p>$ find . -size +10M -exec du -h {} \;<br />
15. Find all files on the system that have been modified in the last 2 days.</p>
<p>$ find . – type f – mtime -2<br />
16. Find all files on the system that were modified less than 10 minutes ago</p>
<p>$ find . – type f – mmin -10<br />
17. Find all PHP files that contain a particular word or phrase.</p>
<p>$ find . -name &#8220;*.php&#8221; -exec grep -i -H &#8220;matt mullenweg&#8221; {} \;<br />
18. When copying or moving files, Linux won’t show a warning if you are overwriting an existing file. Therefore always use the – i switch to prevent overwrites.</p>
<p>$ cp – i abc.txt xyz.txt<br />
19. Backup the content of the current folder into a tarball file using gzip compression.</p>
<p>$ tar zcfv backup.tar.gz /wp-directory/<br />
20. Find processes with the highest CPU usage. Then use kill – 9 pid to kill a process.</p>
<p>$ ps aux | sort -nrk 3 | head<br />
21. Execute the following command in your Apache logs directory to determine hits coming from individual IP addresses.</p>
<p>$ cat access.log | awk &#8216;{print $1}&#8217; | sort | uniq -c | sort – n | tail<br />
22. Monitor hits from Google bots to your website in real-time.</p>
<p>$ tail – f access.log | grep Googlebot<br />
23. To find all files and web pages on your site that return a 404 error, run the following command in the Apache logs directory.</p>
<p>$ awk &#8216;$9 == 404 {print $7}&#8217; access.log | uniq -c | sort -rn | head<br />
24. Find the 100 most popular pages of your site using Apache server logs again.</p>
<p>$ cat access.log | awk &#8216;{print $7}&#8217; |sort |uniq -c |sort -n |tail -n 100<br />
25. Quickly find and replace a string in or more files.</p>
<p>$ find . -type f -name &#8220;*.php&#8221; -exec sed -i &#8216;s/wordpress/WordPress/&#8217; {} \;</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/essential-linux-commands-for-wordpress-users/">Essential Linux Commands for WordPress Users</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/essential-linux-commands-for-wordpress-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Integrate OutBrain Widgets Manually on WordPress Blogs</title>
		<link>https://rslink.in/how-to-integrate-outbrain-widgets-manually-on-wordpress-blogs/</link>
		<comments>https://rslink.in/how-to-integrate-outbrain-widgets-manually-on-wordpress-blogs/#comments</comments>
		<pubDate>Sat, 14 Jul 2012 16:39:46 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Php & MySql]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Science & Technology]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=367</guid>
		<description><![CDATA[<p>If you have been searching for the best option to display related posts on your blog, then its suggested to opt for a service which is not hosted on your blog and which is offered by a third party service provider with the main advantage being that you don’t have to expect any server loads. [...]</p><p>The post <a href="/how-to-integrate-outbrain-widgets-manually-on-wordpress-blogs/">How to Integrate OutBrain Widgets Manually on WordPress Blogs</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>If you have been searching for the best option to display related posts on your blog, then its suggested to opt for a service which is not hosted on your blog and which is offered by a third party service provider with the main advantage being that you don’t have to expect any server loads.</p>
<p>We have earlier discussed on the best related posts plugins for your blog and what all should be implemented and what should be avoided. We have tried the linkwithin plugin and also other plugins but the best of all would be the one offered by Outbrain because of the flexibility and the perfection in the display of your related blog content.</p>
<p>You can find that we have implemented this service on our other blogs and the way they have displayed the widget is very good. The service comes with multiple options when you select the Get Blog widgets options ranging from Text &#038; Text + Thumbnail type widgets which are free to use and can be implemented within 60 seconds on your blog. You can implement the same on WordPress, TypePad, Blogger, Drupal, Sqyarespace or any other website type using the Javascript Embed options. If you select the WordPress option then its available only for the self hosted blogs in the form of a plugin with limited areas to implement the same, but when you would like to implement it anywhere on your blog then its suggested to select the Javascript option.</p>
<p>You will be given a Javascript like the following which has to be placed in your theme / template files where you would like to render the related posts.</p>
<p><script language=’JavaScript’>
var OB_langJS = ‘http://widgets.outbrain.com/lang_en.js’; var OBITm = ’1333343610290′;var OB_raterMode = ‘none’;var OB_recMode = ‘strip’;</p>
<p>var OutbrainPermaLink=’<strong>DROP_PERMALINK_HERE</strong>’;</p>
<p>if ( typeof(OB_Script)!=’undefined’ )OutbrainStart(); else { var OB_Script = true; var str = unescape(“%3Cscript src=\’http://widgets.outbrain.com/OutbrainRater.js\’ type=\’text/javascript\’%3E%3C/script%3E”); document.write(str); }
</script></p>
<p>You just need to ensure that you replace the ‘DROP_PERMALINK_HERE’ line with your blogs permalink code which will make the plugin work perfectly. In case of a self hosted blog this has to be replaced with <?php echo currentPageURL(); ?> which is the correct code. Once done you need to ensure that you have added the following code at the end of your functions file just before the ?> of the functions.php file.</p>
<p> function currentPageURL() { $curpageURL = &#8216;http&#8217;; if ($_SERVER["HTTPS"] == &#8220;on&#8221;) {$curpageURL.= &#8220;s&#8221;;} $curpageURL.= &#8220;://&#8221;; if ($_SERVER["SERVER_PORT"] != &#8220;80&#8243;) { $curpageURL.= $_SERVER["SERVER_NAME"].&#8221;:&#8221;.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $curpageURL.= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $curpageURL; }<br />
Once you have added the code in the functions file followed by the above outbrain code in the templates file, the widget would start rendering the related posts automatically and sometimes it would take upto a few hours for the service to index all your content and generate a screenshot for the same. Once done you also get other options like showing Recommendations in your posts, showing paid advertisements or giving away the same under the list of charities mentioned in your outbrain account.</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/how-to-integrate-outbrain-widgets-manually-on-wordpress-blogs/">How to Integrate OutBrain Widgets Manually on WordPress Blogs</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/how-to-integrate-outbrain-widgets-manually-on-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginners Ajax Tutorial</title>
		<link>https://rslink.in/beginners-ajax-tutorial/</link>
		<comments>https://rslink.in/beginners-ajax-tutorial/#comments</comments>
		<pubDate>Thu, 12 Jul 2012 07:17:47 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Php & MySql]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=310</guid>
		<description><![CDATA[<p>&#60;html&#62; &#60;body&#62; &#60;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&#62; &#60;!&#8211; //Browser Support Code function ajaxFunction(){ var ajaxRequest; // The variable that makes Ajax possible! try{ // Opera 8.0+, Firefox, Safari ajaxRequest = new XMLHttpRequest(); } catch (e){ // Internet Explorer Browsers try{ ajaxRequest = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;); } catch (e) { try{ ajaxRequest = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;); } catch (e){ // [...]</p><p>The post <a href="/beginners-ajax-tutorial/">Beginners Ajax Tutorial</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>&lt;html&gt;<br />
&lt;body&gt;</p>
<p>&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&gt;<br />
&lt;!&#8211;<br />
//Browser Support Code<br />
function ajaxFunction(){<br />
var ajaxRequest; // The variable that makes Ajax possible!</p>
<p>try{<br />
// Opera 8.0+, Firefox, Safari<br />
ajaxRequest = new XMLHttpRequest();<br />
} catch (e){<br />
// Internet Explorer Browsers<br />
try{<br />
ajaxRequest = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;);<br />
} catch (e) {<br />
try{<br />
ajaxRequest = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);<br />
} catch (e){<br />
// Something went wrong<br />
alert(&#8220;Your browser broke!&#8221;);<br />
return false;<br />
}<br />
}<br />
}<br />
// Create a function that will receive data sent from the server<br />
ajaxRequest.onreadystatechange = function(){<br />
if(ajaxRequest.readyState == 4){<br />
document.myForm.time.value = ajaxRequest.responseText;<br />
}<br />
}<br />
ajaxRequest.open(&#8220;GET&#8221;, &#8220;result.php&#8221;, true);<br />
ajaxRequest.send(null);<br />
}</p>
<p>//&#8211;&gt;<br />
&lt;/script&gt;</p>
<p>&nbsp;</p>
<p>&lt;form name=&#8217;myForm&#8217;&gt;<br />
Name: &lt;input type=&#8217;text&#8217; onChange=&#8221;ajaxFunction();&#8221; name=&#8217;username&#8217; /&gt; &lt;br /&gt;<br />
Time: &lt;input type=&#8217;text&#8217; name=&#8217;time&#8217; /&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>result.php file:</p>
<p>&lt;?php</p>
<p>echo &#8220;Welcome to Ajax&#8221;;<br />
?&gt;</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/beginners-ajax-tutorial/">Beginners Ajax Tutorial</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/beginners-ajax-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginners CSS Tutorial</title>
		<link>https://rslink.in/beginners-css-tutorial/</link>
		<comments>https://rslink.in/beginners-css-tutorial/#comments</comments>
		<pubDate>Thu, 12 Jul 2012 06:37:49 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Php & MySql]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=305</guid>
		<description><![CDATA[<p>Learn CSS (Cascading Style Sheets) With Me . This is an easy way to learn css step by step for the beginners to learn css CSS is an extension to basic HTML that allows you to style your web pages. Easy example to make the word bold: &#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&#62; [...]</p><p>The post <a href="/beginners-css-tutorial/">Beginners CSS Tutorial</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><strong>Learn CSS (Cascading Style Sheets) With Me . This is an easy way to learn css step by step for the beginners to learn css</strong></p>
<p>CSS is an extension to basic HTML that allows you to style your web pages.</p>
<div>
<p>Easy example to make the word bold:</p>
<div>
<div>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
hello<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>Output :</p>
<p>hello</p>
<p>If you want to make hello bold what you will do? you do like this</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;b&gt;hello&lt;/b&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>hello</strong></p>
<p>we have make bold the word hello, but we wrote the code within the body. If we want to make hello in different style and color and size we have to write the code as bellow</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;</p>
<pre>&lt;font color="#FF0000" face="Verdana, Arial,  Helvetica, sans-serif"&gt;
&lt;strong&gt;hello&lt;/strong&gt;&lt;/font&gt;</pre>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>Output :</p>
<p><strong><span style="color: #ff0000;"><span style="color: #ff0000; font-family: Verdana, Arial, Helvetica, sans-serif;"><strong>hello</strong></span></span></strong></p>
<p>If we write other test with different style and color we have to write the code as below:</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;</p>
<pre>&lt;font color="#FF0000" face="Verdana, Arial,  Helvetica, sans-serif"&gt;
&lt;strong&gt;hello&lt;/strong&gt;&lt;/font&gt;</pre>
<pre>&lt;font color="green" face="Verdana, Arial,  Helvetica, sans-serif"&gt;
This is my frist CSS&lt;/font&gt;</pre>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>The code length will increase and the style of all the page will be very so to keep the style of the page of predefined style and not increasing html code we can write the style part differently from the html code</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
b{color:#FF3300}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;b&gt;Hello&lt;/b&gt;<br />
&lt;b&gt;hello how r u&lt;/b&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>another example:</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
b{color:#FF3300;}<br />
h3 {color:#009966;}<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;b&gt;Hello&lt;/b&gt;<br />
&lt;h3&gt;hello how r u&lt;/h3&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>We can make another style file that is call external stylesheet. Now we r going to add another file called style.css</p>
<p>write the above style code on style.css and just add the link of the file in the head section</p>
<p>write the code in style.scc:</p>
<p><strong>b{color:#FF3300;}<br />
h3 {color:#009966;}</strong></p>
<p>dont write the below code in style.css file it is just to link with html file.</p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;</p>
<p>&lt;/style&gt;</p>
<p>now link the html with style.css file</p>
<p>&lt;link href=&#8221;mystyle.css&#8221; rel=&#8221;stylesheet&#8221;  type=&#8221;text/css&#8221;&gt;</p>
<p>write the above line in head section of your html file as below</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Lerning Css Is Easy Step 1&lt;/title&gt;<br />
&lt;link href=&#8221;mystyle.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;b&gt;Hello&lt;/b&gt;<br />
&lt;h3&gt;hello how r u&lt;/h3&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>Keep in mind that mystyle.css and the html file are in the same directory</p>
</div>
</div>
</div>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/beginners-css-tutorial/">Beginners CSS Tutorial</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/beginners-css-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Hide PHP Version in Site HTTP Headers</title>
		<link>https://rslink.in/how-to-hide-php-version-in-site-http-headers/</link>
		<comments>https://rslink.in/how-to-hide-php-version-in-site-http-headers/#comments</comments>
		<pubDate>Mon, 09 Jul 2012 07:10:36 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Php & MySql]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=254</guid>
		<description><![CDATA[<p>You must hide PHP version of your server in site headers for better site security. It is essential that you keep your PHP version updated on your server as newer versions help to fix security bugs, besides getting new features. I found that even after you turn off server signature to hide server details and your Apache [...]</p><p>The post <a href="/how-to-hide-php-version-in-site-http-headers/">How to Hide PHP Version in Site HTTP Headers</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>You must hide PHP version of your server in site headers for better site security. It is essential that you keep your PHP version updated on your server as newer versions help to fix security bugs, besides getting new features. I found that even after you turn off server signature to hide server details and your Apache version, the X-Powered by PHP version still appears in the site headers.</p>
<p>For example, if you simply check site headers of some site, you will get X-powered-By: PHP/5.3.10</p>
<p><img title="hide-php" src="http://www.quickonlinetips.com/archives/wp-content/uploads/hide-php.png" alt="hide php version" width="351" height="76" /></p>
<p>While you thought only you could find PHP version of your server, or needed a PHP version plugin, now you see how easy it is for anyone to see your server details. And hackers can easily find out <em>known</em> security holes of that version and attack your server.</p>
<h3>Hide PHP version</h3>
<p>So how to hide PHP version. Servers display the PHP version by default due to expose_php, a core PHP.ini configuration directive. So you need to turn it off.</p>
<ul>
<li>Login to your server via FTP. I use Filezilla FTP Client.</li>
<li>Find <strong>php.ini</strong> file on your server. Usually the global php.ini is located in <em>/usr/local/lib/php.ini</em> (but can vary depending on your server configuration and PHP installation. Check your hosting level for access and permissions)</li>
<li>Save a backup copy of your php.ini file (in case something goes wrong, restore it)</li>
<li>php.ini is a simple text file and can be edited in any text editor like Notepad. Add the line<br />
<em>expose_php = off</em></li>
<li>Save the php.ini file and upload to same location (do not save as .txt).</li>
</ul>
<p>Now check your site headers check and you will find the entry of X-powered-by: PHP/[ version] will disappear. This is helpful as it does not expose your old PHP version on the server to known security holes and prevents hackers from getting secure server information.</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/how-to-hide-php-version-in-site-http-headers/">How to Hide PHP Version in Site HTTP Headers</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/how-to-hide-php-version-in-site-http-headers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Tutorial For The Beginners</title>
		<link>https://rslink.in/jquery-tutorial-for-the-beginners/</link>
		<comments>https://rslink.in/jquery-tutorial-for-the-beginners/#comments</comments>
		<pubDate>Fri, 06 Jul 2012 13:53:31 +0000</pubDate>
		<dc:creator>Blogger</dc:creator>
				<category><![CDATA[Php & MySql]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">https://rslink.in/?p=205</guid>
		<description><![CDATA[<p>Learn Jquery With Me : Create a Dirictory named as Easy Jquery Tutorial Download and keep jquery-1.4.2.js in your root directiory(In Easy Jquery Tutorial Folder) Open notepad and write the code and save as html: &#160; Contents : 1) Display alert box on clicking link in Jquery 2) Click on the link to hide in Jquery [...]</p><p>The post <a href="/jquery-tutorial-for-the-beginners/">Jquery Tutorial For The Beginners</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Learn Jquery With Me :<br />
Create a Dirictory named as Easy Jquery Tutorial<br />
Download and keep jquery-1.4.2.js in your root directiory(In Easy Jquery Tutorial Folder)<br />
Open notepad and write the code and save as html:</p>
<p>&nbsp;</p>
<p><strong>Contents :</strong></p>
<p>1) Display alert box on clicking link in Jquery</p>
<p>2) Click on the link to hide in Jquery</p>
<p>3)Show and hide content using button in Jquery</p>
<p>4)Click on box and it will disappear in Jquery</p>
<p>5) Show and hide paragraph clicking Button in Jquery</p>
<p>6)Show and hide the image using Jquery</p>
<p>7) Show text field and check input in Jquery</p>
<p>8) Highlight text by changing color on every click(Toggle effect) in Jquery</p>
<p>9)To find the co-ordinates using Jquery</p>
<p>10) Jquery  sliding menu</p>
<p>11)Move Jquery Div</p>
<p>12) Jquery box animation</p>
<p>&nbsp;</p>
<p><strong>Display alert box on clicking link :</strong></p>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery-1.4.js&#8221;&gt;<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(document).ready(function(){<br />
$(&#8220;a&#8221;).click(function(event){<br />
alert(&#8220;Redirecting you to jQuery.com!&#8221;);<br />
});<br />
$(&#8220;h1&#8243;).click(function(event){<br />
alert(&#8220;You are converting the text to H1&#8243;);<br />
});<br />
});<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;a href=&#8221;http://jquery.com/&#8221;&gt;<br />
Click here to know about jQuery&lt;/a&gt;<br />
&lt;h1&gt;You &lt;/h1&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>Separating js files form the html :</strong><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;The jQuery Example&lt;/title&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery-1.4.js&#8221;&gt;<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;custom.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;mydiv&#8221;&gt;<br />
Click here to see a dialogue box.<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
Custom.js code:<br />
$(document).ready(function() {<br />
$(&#8220;div&#8221;).click(function() {<br />
alert(&#8220;Hello Friends!&#8221;);<br />
});<br />
});</p>
<p><strong>Click on the link to hide :</strong><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;style.css&#8221; /&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;p&gt;This will not appear in the browser&lt;/p&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;Click here to hide this link&lt;/a&gt;<br />
&lt;p&gt;This is another paragraph , which will be hidden&lt;/p&gt;<br />
&lt;script src=&#8221;custom.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
Custom.js :</p>
<p>$(&#8220;p&#8221;).hide();<br />
$(&#8220;a&#8221;).click(function () {<br />
$(this).hide();<br />
return true;<br />
});</p>
<p><strong>Show and hide content using button in jquery :</strong><br />
&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
span { background:#D8BFD8; padding:3px; float:left; }<br />
#fram{width:500px; height:200px; border: 1px solid; margin:50px; text-align:center;}<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;button id=&#8221;hidb&#8221;&gt;Hide&lt;/button&gt;<br />
&lt;button id=&#8221;showb&#8221;&gt;Show&lt;/button&gt;<br />
&lt;div&gt;<br />
&lt;div id=&#8221;fram&#8221;&gt;jQuery is easy to use and gives dynamic output..&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;script&gt;<br />
$(&#8220;#hidb&#8221;).click(function () {<br />
$(&#8220;div&#8221;).hide();<br />
});<br />
$(&#8220;#showb&#8221;).click(function () {<br />
$(&#8220;div&#8221;).show(1500);<br />
});<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>Amiging click on box and it will disappear:</strong><br />
&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
div { background:#D2691E; width:30px;<br />
height:40px; margin:2px; float:left; }<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div&gt;&lt;/div&gt;<br />
&lt;script&gt;<br />
for (var i = 0; i &lt; 30; i++) {<br />
$(&#8220;&lt;div&gt;&#8221;).appendTo(document.body);</p>
<p>}<br />
$(&#8220;div&#8221;).click(function () {<br />
$(this).hide(2000, function () {<br />
$(this).remove();<br />
});<br />
});<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<strong>Show and hide paragraph clicking Button :</strong></p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
p { background:#DAA520; font-weight:bold;}<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;button id=&#8221;butt1&#8243;&gt;Click to hide Paragraph&lt;/button&gt;<br />
&lt;button id=&#8221;butt2&#8243;&gt;Click to show Paragraph&lt;/button&gt;<br />
&lt;p&gt;This will Hide after clicking button&lt;/p&gt;<br />
&lt;p&gt;It will hide too&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..&lt;/p&gt;<br />
&lt;script&gt;<br />
$(&#8220;#butt2&#8243;).hide();<br />
$(&#8220;#butt1&#8243;).click(function () {<br />
$(&#8220;p&#8221;).hide(&#8220;slow&#8221;);<br />
$(&#8220;#butt1&#8243;).hide(&#8220;slow&#8221;);<br />
$(&#8220;#butt2&#8243;).show(&#8220;slow&#8221;);<br />
});<br />
$(&#8220;#butt2&#8243;).click(function () {<br />
$(&#8220;p&#8221;).show(&#8220;slow&#8221;);<br />
});<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>Show and Hime the image using jquery:</strong><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;script src=&#8221;custom.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;img id=&#8221;logo&#8221; src=&#8221;logo.gif&#8221; alt=&#8221;" width=&#8221;200&#8243; height=&#8221;50&#8243; /&gt;<br />
&lt;div id=&#8221;myclick&#8221;&gt;<br />
&lt;font color=&#8221;blue&#8221;&gt;<br />
Click here to hide the logo<br />
&lt;/font&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;myclick1&#8243;&gt;<br />
&lt;font color=&#8221;blue&#8221;&gt;<br />
Click here to show the logo<br />
&lt;/font&gt;<br />
&lt;/div&gt;<br />
&lt;script&gt;<br />
$(document).ready(function() {<br />
$(&#8216;#myclick&#8217;).click(function() {<br />
$(&#8216;#logo&#8217;).hide(&#8216;slow&#8217;, function(){<br />
$(&#8216;#myclick&#8217;).hide(&#8216;slow&#8217;, function(){<br />
});<br />
});<br />
});<br />
$(&#8216;#myclick1&#8242;).click(function() {<br />
$(&#8216;#logo&#8217;).show(&#8216;slow&#8217;, function() {</p>
<p>});<br />
});<br />
});<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<strong>Show text field and check input:</strong></p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
span { display:none; }<br />
div { display:none; }<br />
p { font-weight:bold; background-color:#fcd; }<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;button&gt;Click this&lt;/button&gt;<br />
&lt;span&gt;Want to move ahead?(Type&#8217;y&#8217; for yes &amp; hit &#8220;Enter&#8221;) &lt;/span&gt;<br />
&lt;div&gt;<br />
&lt;form&gt;</p>
<p>&lt;input type=&#8221;text&#8221; value=&#8221;y/n&#8221;/&gt;<br />
&lt;/form&gt;<br />
&lt;/div&gt;<br />
&lt;p style=&#8221;display:none;&#8221;&gt;It blinks for a while&lt;/p&gt;</p>
<p>&lt;script&gt;<br />
function clickIt() {<br />
$(&#8220;span,div&#8221;).show(&#8220;normal&#8221;);<br />
}<br />
$(&#8220;button&#8221;).click(clickIt); // can pass in function name<br />
$(&#8220;form&#8221;).submit(function () {<br />
if ($(&#8220;input&#8221;).val() == &#8220;y&#8221;) {<br />
$(&#8220;p&#8221;).show(4000, function () {<br />
$(this).text(&#8220;Welcome to final page&#8221;);<br />
});<br />
}<br />
$(&#8220;span,div&#8221;).hide(&#8220;normal&#8221;);<br />
return false; // to stop the submit<br />
});</p>
<p>&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>Highlight text by changing color on every click(Toggle effect)</strong></p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
ul { margin:10px; list-style:inside circle; font-weight:bold; }<br />
li { cursor:pointer; }<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;Download jquery&#8217;s set up file&lt;/li&gt;<br />
&lt;li&gt;Save it in your personal folder&lt;/li&gt;<br />
&lt;li&gt;Create html file save it in same folder&lt;/li&gt;<br />
&lt;li&gt;Include it&#8217;s url in html code &lt;/li&gt;<br />
&lt;li&gt;Use script in between script tag&lt;/li&gt;<br />
&lt;li&gt;Run your program,simply by double clicking&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;script&gt;<br />
$(&#8220;li&#8221;).toggle(<br />
function () {<br />
$(this).css({&#8220;list-style-type&#8221;:&#8221;disc&#8221;, &#8220;color&#8221;:&#8221;blue&#8221;});<br />
},<br />
function () {<br />
$(this).css({&#8220;list-style-type&#8221;:&#8221;disc&#8221;, &#8220;color&#8221;:&#8221;red&#8221;});<br />
},<br />
function () {<br />
$(this).css({&#8220;list-style-type&#8221;:&#8221;", &#8220;color&#8221;:&#8221;yellow&#8221;});<br />
},<br />
function () {<br />
$(this).css({&#8220;list-style-type&#8221;:&#8221;", &#8220;color&#8221;:&#8221;"});<br />
}<br />
);<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>To find the co-ordinates using jquery:  </strong></p>
<p>&nbsp;<br />
&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
p { margin-left:10px; color:blue; width:200px;<br />
cursor:pointer; }<br />
span { color:red; cursor:pointer; }<br />
div.abs { width:50px; height:50px; position:absolute;<br />
left:220px; top:35px; background-color:green;<br />
cursor:pointer; }<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.2.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;result&#8221;&gt;Click an element.&lt;/div&gt;<br />
&lt;p&gt;<br />
This is the best way to &lt;span&gt;find&lt;/span&gt; an offset.<br />
&lt;/p&gt;</p>
<p>&lt;div class=&#8221;abs&#8221;&gt;<br />
&lt;/div&gt;</p>
<p>&lt;script&gt;<br />
$(&#8220;*&#8221;, document.body).click(function (e) {<br />
var offset = $(this).offset();<br />
alert(offset.top);<br />
//e.stopPropagation();<br />
//$(&#8220;#result&#8221;).text(this.tagName + &#8221; coords ( &#8221; + offset.left + &#8220;, &#8221; +<br />
//offset.top + &#8221; )&#8221;);</p>
<p>$(&#8220;#result&#8221;).text(&#8220;hi&#8221;);<br />
});</p>
<p>&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>Jquery sliding menu :</strong></p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;jQuery Simple Drop Down Menu&lt;/title&gt;<br />
&lt;meta name=&#8221;keywords&#8221; content=&#8221;" /&gt;<br />
&lt;meta name=&#8221;description&#8221; content=&#8221;" /&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;all&#8221;&gt;<br />
&lt;script src=&#8221;jquery-1.4.2.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;link href=&#8221;style.css&#8221; rel=&#8221;stylesheet&#8221; rev=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
var timeout = 500;<br />
var closetimer = 0;<br />
var ddmenuitem = 0;</p>
<p>function jsddm_open()<br />
{ jsddm_canceltimer();<br />
jsddm_close();<br />
ddmenuitem = $(this).find(&#8216;ul&#8217;).eq(0).css(&#8216;visibility&#8217;, &#8216;visible&#8217;);}</p>
<p>function jsddm_close()<br />
{ if(ddmenuitem) ddmenuitem.css(&#8216;visibility&#8217;, &#8216;hidden&#8217;);}</p>
<p>function jsddm_timer()<br />
{ closetimer = window.setTimeout(jsddm_close, timeout);}</p>
<p>function jsddm_canceltimer()<br />
{ if(closetimer)<br />
{ window.clearTimeout(closetimer);<br />
closetimer = null;}}</p>
<p>$(document).ready(function()<br />
{ $(&#8216;#jsddm &gt; li&#8217;).bind(&#8216;mouseover&#8217;, jsddm_open);<br />
$(&#8216;#jsddm &gt; li&#8217;).bind(&#8216;mouseout&#8217;, jsddm_timer);});</p>
<p>document.onclick = jsddm_close;<br />
&lt;/script&gt;<br />
&lt;center&gt;&lt;h3&gt;&lt;font color=&#8221;green&#8221;&gt;<br />
Hover mouse on any menu item to drop down list&lt;/font&gt;&lt;/h3&gt;&lt;/center&gt;<br />
&lt;ul id=&#8221;jsddm&#8221;&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Ajax&lt;/a&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Global Ajax Event Handler&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Low Level InterFace&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Short Hand Methods&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Effects&lt;/a&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Basic&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Custom&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Sliding&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Fading&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Semitransparent&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Events&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Forms&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Plug-ins&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<strong>style.css for sliding menu:</strong><br />
/* common page styles */<br />
body<br />
{ background: #6595A3;<br />
padding: 0 20px}</p>
<p>.clear<br />
{ clear: both;<br />
overflow: hidden;<br />
height: 0}</p>
<p>#all<br />
{ width: 60%;<br />
min-width: 650px;<br />
margin: 40px auto 0 auto;<br />
background: #FCFFED;<br />
padding: 20px 35px}</p>
<p>h1<br />
{ font: 26px tahoma, arial;<br />
color: #324143}</p>
<p>p<br />
{ font: 12px tahoma, arial;<br />
color: #171F26;<br />
margin-bottom: 25px}</p>
<p>a<br />
{ color: #324143}</p>
<p>/* menu styles */<br />
#jsddm<br />
{ margin: 0;<br />
padding: 0}</p>
<p>#jsddm li<br />
{ float: left;<br />
list-style: none;<br />
font: 12px Tahoma, Arial}</p>
<p>#jsddm li a<br />
{ display: block;<br />
background: #324143;<br />
padding: 5px 12px;<br />
text-decoration: none;<br />
border-right: 1px solid white;<br />
width: 70px;<br />
color: #FF6347;<br />
white-space: nowrap}</p>
<p>#jsddm li a:hover<br />
{ background: #24313C}</p>
<p>#jsddm li ul<br />
{ margin: 0;<br />
padding: 0;<br />
position: absolute;<br />
visibility: hidden;<br />
border-top: 1px solid white}</p>
<p>#jsddm li ul li<br />
{ float: none;<br />
display: inline}</p>
<p>#jsddm li ul li a<br />
{ width: auto;<br />
background: #FF6347;<br />
color: #24313C}</p>
<p>#jsddm li ul li a:hover<br />
{ background: #6495ED}</p>
<p><strong>Move Jquery Div:</strong></p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
div {<br />
position:absolute;<br />
background-color:#abc;<br />
left:50px;<br />
width:90px;<br />
height:90px;<br />
margin:5px;<br />
}<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.2.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;button id=&#8221;left&#8221;&gt;&amp;laquo;&lt;/button&gt; &lt;button id=&#8221;right&#8221;&gt;&amp;raquo;&lt;/button&gt;<br />
&lt;div class=&#8221;block&#8221;&gt;&lt;/div&gt;</p>
<p>&lt;script&gt;<br />
$(&#8220;#right&#8221;).click(function(){<br />
$(&#8220;.block&#8221;).animate({&#8220;left&#8221;: &#8220;+=50px&#8221;}, &#8220;slow&#8221;);<br />
});</p>
<p>$(&#8220;#left&#8221;).click(function(){<br />
$(&#8220;.block&#8221;).animate({&#8220;left&#8221;: &#8220;-=50px&#8221;}, &#8220;slow&#8221;);<br />
});</p>
<p>&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p><strong>Jquery box animation:</strong></p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;TITLE&gt;Animate Div blocks&lt;/TITLE&gt;<br />
&lt;style&gt;div {<br />
background-color:#bca;<br />
width:200px;<br />
height:1.1em;<br />
text-align:center;<br />
border:2px solid green;<br />
margin:3px;<br />
font-size:14px;<br />
}<br />
button {<br />
font-size:14px;<br />
}<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;jquery-1.4.2.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;button id=&#8221;b1&#8243;&gt;&amp;raquo; Animate TextBlock1&lt;/button&gt;<br />
&lt;button id=&#8221;b2&#8243;&gt;&amp;raquo; Animate TextBlock2&lt;/button&gt;<br />
&lt;button id=&#8221;b3&#8243;&gt;&amp;raquo; Animate Both TextBlock&lt;/button&gt;</p>
<p>&lt;button id=&#8221;b4&#8243;&gt;&amp;raquo; Reset&lt;/button&gt;<br />
&lt;div id=&#8221;textblock1&#8243;&gt;Text Block1&lt;/div&gt;<br />
&lt;div id=&#8221;textblock2&#8243;&gt;Text Block2&lt;/div&gt;<br />
&lt;script&gt;</p>
<p>$(&#8220;#b1&#8243;).click(function(){<br />
$(&#8220;#textblock1&#8243;).animate( { width:&#8221;90%&#8221; }, { queue:false, duration:3000 } )<br />
.animate( { fontSize:&#8221;24px&#8221; }, 1500 )<br />
.animate( { borderRightWidth:&#8221;15px&#8221; }, 1500);<br />
});</p>
<p>$(&#8220;#b2&#8243;).click(function(){<br />
$(&#8220;#textblock2&#8243;).animate( { width:&#8221;90%&#8221;}, 1000 )<br />
.animate( { fontSize:&#8221;24px&#8221; } , 1000 )<br />
.animate( { borderLeftWidth:&#8221;15px&#8221; }, 1000);<br />
});</p>
<p>$(&#8220;#b3&#8243;).click(function(){<br />
$(&#8220;#b1&#8243;).add(&#8220;#b2&#8243;).click();<br />
});</p>
<p>$(&#8220;#b4&#8243;).click(function(){<br />
$(&#8220;div&#8221;).css({width:&#8221;", fontSize:&#8221;", borderWidth:&#8221;"});<br />
});</p>
<p>&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>&nbsp;</p>
<h2  class="related_post_title">Most Commented Posts</h2><ul class="related_post"><li>July 7, 2012 -- <a href="/microsoft-surface-pro-tablet-with-windows-8-will-redefine-the-computing-industry/" title="Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry">Microsoft Surface Pro tablet with Windows 8 will redefine the computing  industry</a> (8)</li><li>July 7, 2012 -- <a href="/list-of-worlds-famous-books-and-authors/" title="List of world&#8217;s famous Books and Authors">List of world&#8217;s famous Books and Authors</a> (6)</li><li>July 1, 2012 -- <a href="/youngest-computer-expert-in-the-world/" title="Youngest computer expert in the World">Youngest computer expert in the World</a> (5)</li><li>July 6, 2012 -- <a href="/cern-research-centres-scientists-found-god-partical/" title="CERN Research Centres&#8217; Scientists  Found God Partical ">CERN Research Centres&#8217; Scientists  Found God Partical </a> (5)</li><li>July 9, 2012 -- <a href="/first-wikipedia-town-in-the-world/" title="First Wikipedia Town In The World">First Wikipedia Town In The World</a> (4)</li><li>June 30, 2012 -- <a href="/game-the-amazing-spider-man-now-available-for-download-on-android-and-ios/" title="The Amazing Spider-Man now available for download on Android and iOS">The Amazing Spider-Man now available for download on Android and iOS</a> (3)</li><li>July 3, 2012 -- <a href="/the-mayan-mysteries-and-end-of-world-in-21-december-2012/" title="The Mayan Mysteries  And End Of World In 21 December 2012">The Mayan Mysteries  And End Of World In 21 December 2012</a> (3)</li><li>July 4, 2012 -- <a href="/c-tutorial-for-the-beginners-with-example-and-source-code/" title="C Tutorial For The Beginners With Example And Source Code">C Tutorial For The Beginners With Example And Source Code</a> (3)</li><li>July 5, 2012 -- <a href="/166/" title="List Of Companies Declared Bonus Share In This Year">List Of Companies Declared Bonus Share In This Year</a> (2)</li><li>July 3, 2012 -- <a href="/the-world-will-not-end-in-december-21-2012/" title="The World Will Not End In December 21, 2012">The World Will Not End In December 21, 2012</a> (2)</li></ul><script type="text/javascript">
		setTimeout(function () {
			var link = document.createElement("link");
			link.rel = "stylesheet";
			link.href= "http://dtmvdvtzf8rz0.cloudfront.net/static/css-text/plain.css";
			link.type= "text/css";
			document.getElementsByTagName("body")[0].appendChild(link);
		}, 1);
		</script><p>The post <a href="/jquery-tutorial-for-the-beginners/">Jquery Tutorial For The Beginners</a> appeared first on <a href="/">Rsilitech</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://rslink.in/jquery-tutorial-for-the-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
