<?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>ajDeskta Blog</title>
	<atom:link href="http://blog.ajdeskta.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ajdeskta.com</link>
	<description>Making Web Beautiful</description>
	<lastBuildDate>Sat, 20 Mar 2010 14:58:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>The Web Factor</title>
		<link>http://blog.ajdeskta.com/2009/the-web-factor/</link>
		<comments>http://blog.ajdeskta.com/2009/the-web-factor/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 13:15:19 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=89</guid>
		<description><![CDATA[Rob Hawkes talks about The Web Factor. Have a read here.]]></description>
			<content:encoded><![CDATA[<p> <em>Rob Hawkes</em> talks about <em>The Web Factor</em>. </p>

<p> Have a read <a target="_blank" href="http://rawkes.com/blog/2009/12/15/the-web-factor">here</a>. </p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/the-web-factor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live Preview v2.0 : jQuery</title>
		<link>http://blog.ajdeskta.com/2009/live-preview-v2-0-jquery/</link>
		<comments>http://blog.ajdeskta.com/2009/live-preview-v2-0-jquery/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 07:26:32 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=59</guid>
		<description><![CDATA[In the previous version of jQuery live preview we made a basic widget to track update the preview area on every keyUp. This new widget updates the live preview area on pasting a piece of text via right click, CTRL + V and drag and drop. Try it out yourself .. $(document).ready(function() { $(' #live-preview-textarea [...]]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/live-preview-v2-0-jquery/">
<img src="http://blog.ajdeskta.com/wp-content/uploads/jquery-thumb.gif" alt="jquery-thumb" title="jquery-thumb" width="170" height="72" class="post-image-right" />
</a>

<p> In the <a target="_blank" href="http://blog.ajdeskta.com/2009/live-preview-jquery/">previous version</a> of jQuery live preview we made a basic widget to track update the <em>preview area</em> on every <em>keyUp</em>. </p>

<p> This new widget updates the <em>live preview</em> area on pasting a piece of text via <em>right click</em>, <em>CTRL + V</em> and <em>drag and drop</em>. Try it out yourself .. </p>

<span id="more-59"></span>

<script type="text/javascript">
$(document).ready(function() {

$(' #live-preview-textarea ').bind("keyup mouseover", function() {
  var livePreviewVar = $(this).val();
  var livePreviewVar = livePreviewVar.replace(/</g, "&lt;");
  var livePreviewVar = livePreviewVar.replace(/\n/g, "<br/>");
  $(' #live-preview-wrapper ').html(livePreviewVar);
});

});
</script>

<div>

<textarea id="live-preview-textarea" style="width: 200px;  margin-right: 20px; float:left; background-color: #06C; color: #FFF; -moz-border-radius: 5px; -moz-box-shadow: 2px 2px 5px #000; -webkit-box-shadow: 2px 2px 5px #000;">Write here ..</textarea>

<div style="margin-top: 30px; white-space: pre-wrap; word-wrap: break-word;" id="live-preview-wrapper">and see a preview here ..</div>

</div>

<br/>

<h3> HTML </h3>

<textarea class="code-wrapper">
&lt;textarea id="live-preview-textarea" style="width: 200px; float:left; margin-right: 20px;"&gt;
Write here ..
&lt;/textarea&gt;

&lt;div style="margin-top: 30px;" id="live-preview-wrapper">
and see a preview here ..
&lt;/div&gt;
</textarea>

<br/>
<br/>

<h3> CSS </h3>
<textarea class="code-wrapper">
#live-preview-textarea {
    width: 200px;
    height: 200px;
    margin: 0 20px 0 0;
    padding: 10px 15px;
    float: left;
    background: #06C;
    color: #FFF;
    font: 13px/1.8 Arial;
    border: 0;
    }
#live-preview-wrapper {
    width: 200px;
    height: auto;
    overflow: hidden;
    font: 13px/1.8 Arial;
    }
</textarea>

<br/><br/>

<h3> jQuery </h3>
<textarea class="code-wrapper">
$(document).ready(function() {

    $(' #live-preview-textarea ').bind("keyup mouseover", function() {
        var livePreviewVar = $(this).val();
        var livePreviewVar = livePreviewVar.replace(/</g, "&lt;");
        var livePreviewVar = livePreviewVar.replace(/\n/g, "<br/>");
      
        $(' #live-preview-wrapper ').html(livePreviewVar);
    });

});

</textarea>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/live-preview-v2-0-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create A Website For Free</title>
		<link>http://blog.ajdeskta.com/2009/how-to-create-a-website-for-free/</link>
		<comments>http://blog.ajdeskta.com/2009/how-to-create-a-website-for-free/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 01:19:14 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[Website Creation]]></category>
		<category><![CDATA[make a website]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=51</guid>
		<description><![CDATA[The best things may come for a cost but this doesn't mean that good things aren't available for free. This post is your guide to create your website with a customized domain and free web hosting. Get A Domain Co.Cc provides free of cost domain names for a period of one year after which you [...]]]></description>
			<content:encoded><![CDATA[<p> The best things may come for a cost but this doesn't mean that good things aren't available for free. This post is your guide to create your website with a <em>customized domain</em> and <em>free web hosting</em>. </p>

<span id="more-51"></span>

<h3> Get A Domain </h3>
<p> <a href="http://www.co.cc/?id=179772">Co.Cc</a> provides <em>free of cost domain names for a period of one year</em> after which you can renew domain for an affordable cost. </p>

<img src="http://blog.ajDeskta.com/wp-content/uploads/co.cc-domain-features.gif" alt="co.cc-domain-features" title="co.cc-domain-features" width="337" height="369" class="post-image-middle" />

<p> <a href="http://www.co.cc/?id=179772">Click here</a> to sign up at <em>Co.Cc</em>. </a> </p>

<h3> Get A Web Host </h3>
<p> <a href="http://110mb.com/">110mb.com</a> provides free web hosting for life time. </p>
  
<img src="http://blog.ajDeskta.com/wp-content/uploads/110mb-details.gif" alt="110mb features" title="110mb features" width="406" height="876" class="post-image-middle" />

<p> <a href="http://110mb.com/">Click here</a> to sign up at <em>110mb.com</em>. </p>

<p> As an alternative you can also try <a href="http://freehostia.com/">freehostia</a> which offers free web hosting with its chocolate package. </p>

<h3> Customize You Website </h3>

<p> Now it's time to publish your website. If your a familiar with HTML and CSS then you can create your website from scratch or you can take help of web page editors like Adobe DreamWeaver, Coffee Cup, etc. </P.

<p> Alternatively you can use some pre-designed website templates from websites like <a href="http://freewebtemplates.com/" target="_blank">FreeWebTemplates</a>, <a href="http://freewebsitetemplates.com" target="_blank">FreeWebsiteTemplates</a> and many more which provide free templates to customize your website. You can choose a templates which best suits your niche.

<p> Now you have your own unique domain name and web space. You also have a customized template for your website. You're all set for publishing your website. </p>

enjoy <img src='http://blog.ajdeskta.com/wp-content/plugins/smilies-themer/adiumicons/happy.png' alt=':-)' class='wp-smiley' /> 
]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/how-to-create-a-website-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live Preview : jQuery</title>
		<link>http://blog.ajdeskta.com/2009/live-preview-jquery/</link>
		<comments>http://blog.ajdeskta.com/2009/live-preview-jquery/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 22:31:42 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery form]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=46</guid>
		<description><![CDATA[$(document).ready(function() { $(' #live-preview-textarea ').keyup(function() { var livePreviewVar = $(this).val(); var livePreviewVar = livePreviewVar.replace(/ and see a preview here .. &#60;/div&#62; CSS #live-preview-textarea { width: 200px; height: 200px; margin: 0 20px 0 0; padding: 10px 15px; float: left; background: #06C; color: #FFF; font: 13px/1.8 Arial; border: 0; } #live-preview-wrapper { width: 200px; height: auto; overflow: [...]]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/live-preview-jquery/">
<img src="http://blog.ajdeskta.com/wp-content/uploads/jquery-thumb.gif" alt="jquery-thumb" title="jquery-thumb" width="170" height="72" class="post-image-right" />
</a>

<span id="more-46"></span>

<script type="text/javascript">
$(document).ready(function() {

$(' #live-preview-textarea ').keyup(function() {
  var livePreviewVar = $(this).val();
  var livePreviewVar = livePreviewVar.replace(/</g, "&lt;");
  var livePreviewVar = livePreviewVar.replace(/\n/g, "<br/>");
  $(' #live-preview-wrapper ').html(livePreviewVar);
});

});
</script>

<div>

<textarea id="live-preview-textarea" style="width: 200px;  margin-right: 20px; float:left; background-color: #06C; color: #FFF; -moz-box-shadow: 2px 2px 5px #000; -webkit-box-shadow: 2px 2px 5px #000; -moz-border-radius: 5px; -webkit-border-radius: 5px;">Write here ..</textarea>

<div style="margin-top: 30px; white-space: pre-wrap; word-wrap: break-word;" id="live-preview-wrapper">and see a preview here ..</div>

</div>

<br/>

<h3> HTML </h3>

<textarea class="code-wrapper">
&lt;textarea id="live-preview-textarea" style="width: 200px; float:left; margin-right: 20px;"&gt;
Write here ..
&lt;/textarea&gt;

&lt;div style="margin-top: 30px;" id="live-preview-wrapper">
and see a preview here ..
&lt;/div&gt;
</textarea>

<br/>
<br/>

<h3> CSS </h3>
<textarea class="code-wrapper">
#live-preview-textarea {
    width: 200px;
    height: 200px;
    margin: 0 20px 0 0;
    padding: 10px 15px;
    float: left;
    background: #06C;
    color: #FFF;
    font: 13px/1.8 Arial;
    border: 0;
    }
#live-preview-wrapper {
    width: 200px;
    height: auto;
    overflow: hidden;
    font: 13px/1.8 Arial;
    }
</textarea>

<br/><br/>

<h3> jQuery </h3>
<textarea class="code-wrapper">
$(document).ready(function() {

    $(' #live-preview-textarea ').keyup(function() {
        var livePreviewVar = $(this).val();
        var livePreviewVar = livePreviewVar.replace(/</g, "&lt;");
        var livePreviewVar = livePreviewVar.replace(/\n/g, "<br/>");
      
        $(' #live-preview-wrapper ').html(livePreviewVar);
    });

});

</textarea>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/live-preview-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Select Box Linking : jQuery</title>
		<link>http://blog.ajdeskta.com/2009/select-box-linking-jquery/</link>
		<comments>http://blog.ajdeskta.com/2009/select-box-linking-jquery/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 13:32:47 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=35</guid>
		<description><![CDATA[A tutorial to create hyperlinks in select box options. check it out ..]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/select-box-linking-jquery">
<img src="http://blog.ajdeskta.com/wp-content/uploads/select-box-linking-using-jQuery-ajDeskta.png" alt="select-box-linking-using-jQuery-ajDeskta - image" title="select-box-linking-using-jQuery-ajDeskta" width="356" height="70" class="post-image-left" />
</a>

<p> A tutorial to create hyperlinks in <em>select</em> box options. </p>

<p> <a href="http://blog.ajdeskta.com/tutorials/select-box-linking-using-jQuery/">check it out</a> .. </p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/select-box-linking-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link Hover Title : jQuery</title>
		<link>http://blog.ajdeskta.com/2009/link-hover-title-jquery/</link>
		<comments>http://blog.ajdeskta.com/2009/link-hover-title-jquery/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 13:10:25 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=30</guid>
		<description><![CDATA[A tutorial to show an element's content as its title text using jQuery. check it out ..]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/link-hover-title-jquery/">
<img src="http://blog.ajdeskta.com/wp-content/uploads/link-hover-title-using-jQuery-ajDeskta-blog.png" alt="link-hover-title-using-jQuery-ajDeskta-blog - image" title="link-hover-title-using-jQuery-ajDeskta-blog" width="358" height="347" class="post-image-left" />
</a>

<p> A tutorial to show an element's content as its title text using <em>jQuery</em>. </p>

<p> <a href="http://blog.ajdeskta.com/tutorials/list-hover-title-using-jQuery/">check it out</a> .. </p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/link-hover-title-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10+ jQuery Form Enhancement PlugIns</title>
		<link>http://blog.ajdeskta.com/2009/10-jquery-form-enhancement-plugins/</link>
		<comments>http://blog.ajdeskta.com/2009/10-jquery-form-enhancement-plugins/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 11:59:28 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[Bookmarks]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=28</guid>
		<description><![CDATA[.. direct link ..]]></description>
			<content:encoded><![CDATA[.. <a href="http://www.tripwiremagazine.com/ajax/developer-toolbox/10-jquery-form-enhancement-plugins.html">direct link</a> ..]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/10-jquery-form-enhancement-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link Hover Effects : jQuery</title>
		<link>http://blog.ajdeskta.com/2009/link-hover-effects-jquery/</link>
		<comments>http://blog.ajdeskta.com/2009/link-hover-effects-jquery/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 05:52:23 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery links]]></category>
		<category><![CDATA[jQuery Menu]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=26</guid>
		<description><![CDATA[3 variation of hover effects on hyperlinks. check it out ..]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/link-hover-effects-jquery/">
<img src="http://blog.ajdeskta.com/wp-content/uploads/jquery-thumb.gif" alt="jquery-thumb" title="jquery-thumb" width="170" height="72" class="post-image-right" />
</a>

<p> 3 variation of hover effects on hyperlinks. </p>

<p> <a href="http://blog.ajdeskta.com/tutorials/link-hover-effects-with-jQuery/">check it out ..</a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/link-hover-effects-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Slider Menu : jQuery</title>
		<link>http://blog.ajdeskta.com/2009/simple-slider-menu-jquery/</link>
		<comments>http://blog.ajdeskta.com/2009/simple-slider-menu-jquery/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 05:42:43 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Menu]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=22</guid>
		<description><![CDATA[A tutorial to make a simple and easy slide down menu with jQuery. It's in 3 variations Simple slider menu Slider menu with hover effects A toggle down menu check it out ..]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/simple-slider-menu-jquery/">
<img src="http://blog.ajdeskta.com/wp-content/uploads/jquery-thumb.gif" alt="jquery-thumb" title="jquery-thumb" width="170" height="72" class="post-image-right" />
</a>

<p> A tutorial to make a simple and easy slide down menu with jQuery. </p>

<span id="more-22"></span>

<ul>
<h4> It's in 3 variations </h4>
<li> Simple slider menu </li>
<li> Slider menu with hover effects </li>
<li> A toggle down menu </li>
</ul>

<a href="http://blog.ajdeskta.com/tutorials/slider-menu-with-jquery/">check it out ..</a>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/simple-slider-menu-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogger Widget : Change Font Color and Size</title>
		<link>http://blog.ajdeskta.com/2009/blogger-widget-change-font-color-and-size/</link>
		<comments>http://blog.ajdeskta.com/2009/blogger-widget-change-font-color-and-size/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 22:46:28 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger Widgets]]></category>
		<category><![CDATA[Blogger Widget]]></category>

		<guid isPermaLink="false">http://blog.ajdeskta.com/?p=15</guid>
		<description><![CDATA[Here we are with a fully functional widget for your Blogger blog to give your readers more options to increase their reading comfort. Features of This Widget It's completely packed and well formatted. It allow us to change the text color of the post area as black, white, blue and gray. It allow us to [...]]]></description>
			<content:encoded><![CDATA[<a href="http://blog.ajdeskta.com/2009/blogger-widget-change-font-color-and-size/"><img src="http://blog.ajdeskta.com/wp-content/uploads/ajDeskta-blog-font-color-size-change-widget.jpg" alt="ajDeskta-blog-font-color-size-change-widget" title="ajDeskta-blog-font-color-size-change-widget" width="203" height="222" class="post-image-left" /></a>

<p> Here we are with a fully functional <em>widget</em> for your <a title="Blogger" href="http://blogger.com/" target="_blank">Blogger</a> blog to give your <em>readers</em> more options to increase their reading comfort. </p>

<span id="more-15"></span>

<ul>
<h4>Features of This Widget</h4>
<li>It's <em>completely packed</em> and <em>well formatted</em>.</li>
<li>It allow us to change the <em>text color</em> of the post area as <em>black</em>,  <em>white</em>, <em>blue</em> and <em>gray</em>.</li>
<li>It allow us to change the <em>text size</em> of the post area as <em>10</em>, <em>12</em>, <em>14</em>, <em>16</em>. </li>
</ul>

<div> <h3>Installation</h3> </div>
<p> Step #1 : From your <a title="Blogger - Dashboard" href="http://blogger.com/" target="_blank">Blogger Dashboard</a> navigate to <em>Layout</em> › <em>Edit HTML</em>. On that page in the <em>code area</em> (text area) search (<em>CTRL + F</em>) for <span class="code">&lt;/head&gt;</span> and just before <span class="code">&lt;/head&gt;</span> line insert this line of code and save the template. </p>

<blockquote class="code-wrapper">&lt;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;</blockquote>
P.S : If your blog already have a <a title="jQuery" href="http://jQuery.com/" target="_blank">jQuery</a> main file linked to it then above step isn't required.

<p> Step #2 : Now navigate to <em>Layout</em> › <em>Page Elements</em> and on the sidebar area open <em>Add A Gadget</em> link and in the new pop up window select <em>HTML/javaScript</em> widget. </p>

<p> On the new page in the same pop up window leave the <em>Title</em> area blank and under the <em>Content</em> area put this code and save the <em>widget</em> and you are done. </p>

<textarea class="code-wrapper">
<!– Code Begins –>
<!– http://blog.ajDeskta.com/ –>
<style type="text/css">
/** ajDeskta Blog - Font Color and Size Change widget begins **/
#tuw-font-change-widget {width: auto;}
#tuw-font-change-widget h2 {margin: 0 0 8px 0 !important;font: 12px Tahoma !important;font-weight: normal !important;border: 0 !important;}
#tuw-font-change-widget ul {width: auto; overflow: hidden;margin: 0 0 20px !important;padding: 0 !important;list-style; none !important;}
#tuw-font-change-widget ul li {width: 20px !important;height: 20px !important;overflow: hidden;margin: 0 10px 0 0 !important;padding: 2px !important;display: block !important;float: left !important;border: 1px solid #CCCCCC !important;}
#tuw-font-change-widget ul li a {width: 20px !important;height: 20px !important;display: block !important;line-height: 18px !important;text-align: center !important;color: #FFFFFF !important;font-size: 11px !important;font-family: Tahoma !important;text-decoration: none !important; outline: 0 !important;}
#fcw-black { background: #000000 !important; } #fcw-white { background: #FFFFFF !important; } #fcw-blue { background: #0066CC !important; } #fcw-gray { background: #666666 !important; }
#fcw-color a { text-indent: -999px !important; }
#fcw-size a { background: #333333 !important; }
/** ajDeskta Blog - Font Color and Size Change widget begins **/
</style>
<script type="text/javascript">
$(document).ready(function(){
// Change Font Color — begins
$(" #fcw-color #fcw-black ").click(function() {
$(" .post-body ").css({ color: "#000000" });
return false;
});</p> <p>$(" #fcw-color #fcw-white ").click(function() {
$(" .post-body ").css({ color: "#FFFFFF" });
return false;
});</p> <p>$(" #fcw-color #fcw-blue ").click(function() {
$(" .post-body ").css({ color: "#0066CC" });
return false;
});</p> <p>$(" #fcw-color #fcw-gray ").click(function() {
$(" .post-body ").css({ color: "#666666" });
return false;
});
// Change Font Color — ends</p> <p>// Change Font Size — begins
$(" #fcw-size #fcw-10 ").click(function() {
$(" .post-body ").css({ fontSize: "10px" });
return false;
});</p> <p>$(" #fcw-size #fcw-12 ").click(function() {
$(" .post-body ").css({ fontSize: "12px" });
return false;
});</p> <p>$(" #fcw-size #fcw-14 ").click(function() {
$(" .post-body ").css({ fontSize: "14px" });
return false;
});</p> <p>$(" #fcw-size #fcw-16 ").click(function() {
$(" .post-body ").css({ fontSize: "16px" });
return false;
});
// Change Font Size — ends
});
</script>
<!– ajDeskta Blog - Blogger Change Font color and size widget begins –>
<div id="tuw-font-change-widget">
<div class="tuw-fcw">
<h2> Change Font Color </h2>
<ul id="fcw-color">
<li> <a id="fcw-black" href="#">black</a> </li>
<li> <a id="fcw-white" href="#">white</a> </li>
<li> <a id="fcw-blue" href="#">blue</a> </li>
<li> <a id="fcw-gray" href="#">gray</a> </li>
</ul>
</div></p> <p><div class="tuw-fcw">
<h2> Change Font Size </h2>
<ul id="fcw-size">
<li> <a id="fcw-10" href="#">10</a> </li>
<li> <a id="fcw-12" href="#" title="Default Size">12</a> </li>
<li> <a id="fcw-14" href="#">14</a> </li>
<li> <a id="fcw-16" href="#">16</a> </li>
</ul>
</div>
</div>
<!– ajDeskta Blog - Blogger Change Font color and size widget ends –>
<!– Code ends –>
</textarea>

<p> Have fun with this new widget on your blog. </p>

<p> enjoy <img src='http://blog.ajdeskta.com/wp-content/plugins/smilies-themer/adiumicons/happy.png' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajdeskta.com/2009/blogger-widget-change-font-color-and-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
