<?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>TechBuji.com &#187; JavaScript</title>
	<atom:link href="http://www.techbuji.com/tips/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techbuji.com/tips</link>
	<description>Web 2.0 and Tech News</description>
	<lastBuildDate>Wed, 07 Dec 2011 17:40:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQWizard Version 1 Released</title>
		<link>http://www.techbuji.com/tips/2011/07/27/jqwizard-version-1-released/</link>
		<comments>http://www.techbuji.com/tips/2011/07/27/jqwizard-version-1-released/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:31:34 +0000</pubDate>
		<dc:creator>TechBuji</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.techbuji.com/tips/?p=2192</guid>
		<description><![CDATA[jQWizard is a jQuery plugin for creating nice looking html wizard forms. Features Light weight. Supports upto five steps. Works with IE6+, Firefox, Chrome, Safari, Opera and all other browsers...]]></description>
			<content:encoded><![CDATA[<p>jQWizard is a jQuery plugin for creating nice looking html wizard forms.</p>
<p><strong>Features</strong><br />
Light weight.<br />
Supports upto five steps.<br />
Works with IE6+, Firefox, Chrome, Safari, Opera and all other browsers in the world. </p>
<p><a href="http://www.techbuji.com/jqwizard/">Visit jQWizard Project Home</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techbuji.com/tips/2011/07/27/jqwizard-version-1-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Smooth scrolling of name tags (anchor) in HTML using jQuery</title>
		<link>http://www.techbuji.com/tips/2009/08/18/smooth-scrolling-of-name-tags-anchor-in-html-using-jquery/</link>
		<comments>http://www.techbuji.com/tips/2009/08/18/smooth-scrolling-of-name-tags-anchor-in-html-using-jquery/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 12:24:18 +0000</pubDate>
		<dc:creator>TechBuji</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.techbuji.com/tips/?p=1977</guid>
		<description><![CDATA[Smooth scrolling of name tags (anchor, &#60;a&#62;) in HTML using jQuery Got this from some blog.� I don&#8217;t remember the link. $(function(){ $('a[href*=#]').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') &#38;&#38; location.hostname...]]></description>
			<content:encoded><![CDATA[<p>Smooth scrolling of name tags (anchor, &lt;a&gt;) in HTML using jQuery</p>
<p>Got this from some blog.� I don&#8217;t remember the link.</p>
<pre>
$(function(){
 $('a[href*=#]').click(function() {
 if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
 &amp;&amp; location.hostname == this.hostname) {
 var $target = $(this.hash);
 $target = $target.length &amp;&amp; $target
 || $('[name=' + this.hash.slice(1) +']');
 if ($target.length) {
 var targetOffset = $target.offset().top;
 $('html,body')
 .animate({scrollTop: targetOffset}, 1000);
 return false;
 }
 }
 });
});</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.techbuji.com/tips/2009/08/18/smooth-scrolling-of-name-tags-anchor-in-html-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

