<?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/"
	>

<channel>
	<title>DomainFunk.com &#187; jQuery</title>
	<atom:link href="http://domainfunk.com/generalsections/all-about-jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://domainfunk.com</link>
	<description>A Magazine for webconnoissuers</description>
	<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Jquery Feedback Tab</title>
		<link>http://domainfunk.com/jquery-feedback-tab</link>
		<comments>http://domainfunk.com/jquery-feedback-tab#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:08:35 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[feedback tab ajax]]></category>

		<category><![CDATA[jquery feedback tab]]></category>

		<category><![CDATA[jquery tab]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=267</guid>
		<description><![CDATA[  
Every one must have visited, one of the many interactive websites, with a feedback tab on the side or on the top, this tab keeps following as you scroll. Ever wondered, gee, how do I get that ? No? Yes? Well I did and I found out there are companies out there charging [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/jquery-feedback-tab&amp;t=Jquery+Feedback+Tab&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/jquery-feedback-tab&amp;title=Jquery+Feedback+Tab&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="http://domainfunk.com/jquery-feedback-tab"><img class="size-full wp-image-289" title="jQuery Feedback Tab" src="http://domainfunk.com/wp-content/uploads/2009/06/jqueryfeedbacktab.jpg" alt="jQuery Feedback Tab" width="150" height="150" /></a></p>
<p>Every one must have visited, one of the many interactive websites, with a feedback tab on the side or on the top, this tab keeps following as you scroll. Ever wondered, gee, how do I get that ? No? Yes? Well I did and I found out there are companies out there charging a bomb for this service/product.</p>
<p>So I set out on a quest to get me one of my own feedback tab. Since I love Jquery, I started to hunt for a jquery feedback tab, and I built one, with the help of a nifty plugin. Want to know how to do it?</p>
<p>Here&#8217;s how..</p>
<h1>jQuery Feedback Tab Requirements</h1>
<p>To get started we need the  <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js&amp;downloadBtn=domainfunk.com">latest Jquery release from here</a> and a nifty jQuery based plugin, known as <a href="http://plugins.jquery.com/files/boxy-0.1.4.zip">boxy.js from here</a>. These two would give us the feedback effect you see on this site. Other than these two we require an image, or alternatively you can just have a div if you did like, for the side &#8220;Feedback&#8221; tab. You can download all of my <a href="http://domainfunk.com/articlesuploads/jQueryFeedbackTab.zip">jquery feedback tab files from here</a>.</p>
<h1>jQuery Feedback Tab Code</h1>
<p>Here&#8217;s the code required in your page (File) which would be where you would require the jquery feedback tab. Alternatively, if you have a content management system, like wordpress or joomla, you could use the header or the index files, accordingly, if you need help, just drop us a comment or two <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code><br />
<span><br />
<strong>1: &lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery.js&#8221;&gt;&lt;/script&gt;</strong></span></code></p>
<p><code><span><strong>2: &lt;script type=&#8221;text/javascript&#8221; src=&#8221;boxy.js&#8221;&gt;&lt;/script&gt;</strong></span></code></p>
<p><code><strong> </strong></code></p>
<p><code><span><strong>3: &lt;link rel=&#8221;stylesheet&#8221; href=&#8221;boxy.css&#8221; type=&#8221;text/css&#8221; /&gt;<br />
</strong></span><br />
</code></p>
<p>The above three lines import the .css file required, that you can play around with and import/include the jquery.js file and the boxy.js plugin file. Make sure the &#8220;src&#8221; path is set up right, with the proper relative path for these scripts.</p>
<p><code><br />
<span><br />
<strong>4: $(function() {</strong></span></code></p>
<p><code><span><strong>5:    /* set global variable for boxy window */</strong></span></code></p>
<p><code><strong>6:    var contactBoxy = null;</strong></code></p>
<p><code><strong>7:    /* what to do when click on contact us link */</p>
<p>8:    $(&#8217;.contact_us&#8217;).click(function(){</p>
<p>9:        var boxy_content;</p>
<p>10:        boxy_content += &#8220;&lt;div style=\&#8221;width:300px; height:300px \&#8221;&gt;&lt;form id=\&#8221;feedbacked\&#8221;&gt;&#8221;;</p>
<p>11:       boxy_content += &#8220;&lt;p&gt;Subject&lt;br /&gt;&lt;input type=\&#8221;text\&#8221; name=\&#8221;subject\&#8221; id=\&#8221;subject\&#8221; size=\&#8221;41\&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Your name and/or email:&lt;br /&gt;&lt;input type=\&#8221;text\&#8221; name=\&#8221;your_email\&#8221; size=\&#8221;41\&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Comment:&lt;br /&gt;&lt;textarea name=\&#8221;comment\&#8221; id=\&#8221;comment\&#8221; cols=\&#8221;37\&#8221; rows=\&#8221;5\&#8221;&gt;&lt;/textarea&gt;&lt;/p&gt;&lt;br /&gt;&lt;input type=\&#8221;submit\&#8221; name=\&#8221;submit\&#8221; value=\&#8221;Send &gt;&gt;\&#8221; /&gt;&#8221;;</p>
<p>12:        boxy_content += &#8220;&lt;/form&gt;&lt;/div&gt;&#8221;;</p>
<p>13:        contactBoxy = new Boxy(boxy_content, {</p>
<p>14:            title: &#8220;Send feedback&#8221;,</p>
<p>15:            draggable: false,</p>
<p>16:           modal:true,</p>
<p>17:            behaviours: function(c) {</p>
<p>18:                c.find(&#8217;#feedbacked&#8217;).submit(function() {</p>
<p>19:                    Boxy.get(this).setContent(&#8221;&lt;div style=\&#8221;width: 300px; height: 300px\&#8221;&gt;Sending&#8230;&lt;/div&gt;&#8221;);</p>
<p>20:                    // submit form by ajax using post and send 3 values: subject, your_email, comment</p>
<p>21:                    $.post(&#8221;http://tweetfeat.com/wp-content/themes/default/suggest.php&#8221;, { subject: c.find(&#8221;input[name='subject']&#8220;).val(), your_email: c.find(&#8221;input[name='your_email']&#8220;).val(), comment: c.find(&#8221;#comment&#8221;).val()},</p>
<p>22:                    function(data){</p>
<p>23:                      /*set boxy content to data from ajax call back*/</p>
<p>24:                        contactBoxy.setContent(&#8221;&lt;div style=\&#8221;width: 300px; height: 300px\&#8221;&gt;&#8221;+data+&#8221;&lt;/div&gt;&#8221;);</p>
<p>25:                    });</p>
<p>26:                    return false;</p>
<p>27:                });</p>
<p>28:            }</p>
<p>29:        });</p>
<p>30:        return false;</p>
<p>31:    });</p>
<p></strong></code></p>
<p><code><span><strong>32: });<br />
</strong></span><br />
</code></p>
<p>The above code is responsible for creating the modal box, just like the ones we see with facebook.com. The code is very self explanatory, again if you have any questions feel free to ask in the comments. There are comments above that would be of help to some.</p>
<p><code><br />
<span><br />
<strong>33: #feedback{</strong></span></code></p>
<p><code><span><strong>34: position:fixed;</strong></span></code></p>
<p><code><strong>35: width:50px;</strong></code></p>
<p><code><strong>36: height:150px;</p>
<p>37: top: 150px;</p>
<p>38: z-index:1;</p>
<p></strong></code></p>
<p><code><span><strong>39: }<br />
</strong></span><br />
</code></p>
<p>The above is the CSS code for the tab, now the tab can be an image or div or both, like in our case we have both, a div with the background as a gradient and the foreground being the text &#8220;Feedback&#8221;.</p>
<p><code><br />
<span><strong><br />
40: &lt;div id=&#8221;feedback&#8221;&gt;&lt;a href=&#8221;#&#8221; class=&#8221;contact_us&#8221;&gt;&lt;img src=&#8221;feedback.gif&#8221; border=&#8221;0&#8243;/&gt;&lt;/a&gt;&lt;/div&gt;</strong><br />
</span><br />
</code></p>
<p>Place the above code just after the &lt;body&gt; tag. Since the position of the div is fixed, it would be appearing outside the normal frame of the browser.</p>
<h1>Conclusion:</h1>
<p>I hope this post would save you the cost for the feedback being implemented, as a give away, our first five followers would get a &#8220;Free Jquery Feedback Tab&#8221; installation from us. All you have to do is subscribe and leave a comment!</p>
<h1><a href="http://domainfunk.com/articlesuploads/jQueryFeedbackTab.zip">Download Entire jQuery Feedback Tab Source Code, With Example. Click Here.</a></h1>
<h1>Resources</h1>
<p>For more on boxy, I suggest visiting @ http://onehackoranother.com/projects/jquery/boxy/</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;bodytext=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;annotation=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;notes=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;t=Jquery%20Feedback%20Tab" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Jquery%20Feedback%20Tab&amp;body=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;t=Jquery%20Feedback%20Tab" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;submitHeadline=Jquery%20Feedback%20Tab&amp;submitSummary=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;exttitle=Jquery%20Feedback%20Tab" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Jquery%20Feedback%20Tab&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;h=Jquery%20Feedback%20Tab" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/jquery-feedback-tab/feed</wfw:commentRss>
		</item>
		<item>
		<title>Iframe and jQuery</title>
		<link>http://domainfunk.com/iframe-and-jquery</link>
		<comments>http://domainfunk.com/iframe-and-jquery#comments</comments>
		<pubDate>Wed, 18 Mar 2009 13:18:13 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[iframe resizing]]></category>

		<category><![CDATA[jQuery for newbies]]></category>

		<category><![CDATA[jQuery iframe]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=261</guid>
		<description><![CDATA[  Most web masters have, or will, come across the &#8220;ol&#8217; iframe resizing dilema&#8221;. I know, I have and How! I have tried any and everything from javascript ot PHP to resize the iFrame window according to the size of the page loaded within. And more often than not, failed miserably, because of the [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/iframe-and-jquery&amp;t=Iframe+and+jQuery&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/iframe-and-jquery&amp;title=Iframe+and+jQuery&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Most web masters have, or will, come across the &#8220;ol&#8217; iframe resizing dilema&#8221;. I know, I have and How! I have tried any and everything from javascript ot PHP to resize the iFrame window according to the size of the page loaded within. And more often than not, failed miserably, because of the cross server scripting security instilled in every browser and platform.</p>
<p>Well, not until recently, with the help of jQuery I was able to resize the iFrame height even with the cross server security of all browsers and it was something that bought a smile to my face and simply because it did, I am in love with jQuery. Here&#8217;s how to&#8230;</p>
<h1>The Problem statement.</h1>
<p>The below code will guide you through the entire process of getting your iframe resized, even if the page loaded within the iframe is from a different server. I am still working on this code, to get the iframe resized exactly as the size of the page within the iframe, and as soon as I figure that one out, it will be out here.</p>
<h1>The Idea.</h1>
<p>For the resizing to work, we need a &lt;div&gt; to envelope the &lt;iframe&gt;. And instead of resizing the iframe we resize the div to height and width we want&#8230;</p>
<h1>The Code.</h1>
<p><code>1. &lt;html&gt;</p>
<p>2. &lt;head&gt;</p>
<p>3. &lt;<span class="start-tag">script</span><span class="attribute-name"> type</span>=<span class="attribute-value">&#8220;text/javascript&#8221; </span><span class="attribute-name">src</span>=<span class="attribute-value">&#8220;jquery.js&#8221;</span>&gt;&lt;/<span class="end-tag">script</span>&gt;</p>
<p>4. &lt;Script&gt;</p>
<p>5.<br />
function resizeIframe() {<br />
	$(&#8217;#iframewrapper&#8217;).css(&#8217;height&#8217;,$(document).height()+1000);</p>
<p>};<br />
6. &lt;/script&gt;</p>
<p>7. &lt;/head&gt;</p>
<p>8. &lt;body onload=&#8221;resizeIframe();&#8221; &gt;</p>
<p>9. &lt;div id=&#8221;iframewrapper&#8221;&gt;</p>
<p>10. &lt;iframe name=&#8221;res&#8221; id=&#8221;res&#8221; src=&#8221;http://google.com&#8221;&gt;Google.com&lt;/iframe&gt;</p>
<p>11. &lt;/div&gt;</p>
<p>12. &lt;/body&gt;</p>
<p>13. &lt;/html&gt;</code></p>
<p>The Explanation for the code.</p>
<p>Line 3: We import the <a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js">jQuery</a> file, that we have downloaded <a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js">from here</a>for the latest version of <a href="http://jquery.com">jQuery click here</a></p>
<p>Line 5: Is a script that is written using jQuery and it essentially increases the size of the div by 1000px. You can use any value you did like to here. using the $() we use the div nodes css property and change/adjust the height as we require it to be.</p>
<p>Line 8: We call the function writing(Line 5) on the onload event of the &lt;body&gt;. This function can be called anytime.</p>
<p>And Thats about it!</p>
<p>Resources</p>
<p>jQuery@ http://jquery.com/</p>
<p>More jQuery Tutorials@ http://docs.jquery.com/Tutorials</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;bodytext=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;annotation=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;notes=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;t=Iframe%20and%20jQuery" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Iframe%20and%20jQuery&amp;body=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;t=Iframe%20and%20jQuery" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;submitHeadline=Iframe%20and%20jQuery&amp;submitSummary=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;exttitle=Iframe%20and%20jQuery" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Iframe%20and%20jQuery&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;h=Iframe%20and%20jQuery" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/iframe-and-jquery/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hello World with jQuery</title>
		<link>http://domainfunk.com/hello-world-with-jquery</link>
		<comments>http://domainfunk.com/hello-world-with-jquery#comments</comments>
		<pubDate>Tue, 16 Dec 2008 16:12:05 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[hello world jQuery]]></category>

		<category><![CDATA[jQuery for newbies]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=157</guid>
		<description><![CDATA[  Writing a “hello world” script using jQuery is fairly simple. This article is just a very brief introduction on writing scripts using jQuery. This article also assumes basic knowledge of JavaScript and DOM (Document Object Model). We will not be covering any practical examples here. This would be more so of a copy-paste [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/hello-world-with-jquery&amp;t=Hello+World+with+jQuery&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/hello-world-with-jquery&amp;title=Hello+World+with+jQuery&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="http://domainfunk.com/hello-world-with-jquery"><img src="http://domainfunk.com/wp-content/uploads/2008/12/jqeryhelloworld.jpg" alt="" title="jqeryhelloworld" width="215" height="200" class="alignleft size-full wp-image-158" /></a>Writing a “hello world” script using jQuery is fairly simple. This article is just a very brief introduction on writing scripts using jQuery. This article also assumes basic knowledge of JavaScript and DOM (Document Object Model). We will not be covering any practical examples here. This would be more so of a copy-paste and try it yourself guide.</p>
<h1>Setting up jQuery on your end</h1>
<p>We would require a fresh copy of the jQuery library, which can be downloaded from <a href="http://docs.jquery.com/Downloading_jQuery">here</a>. After downloading the jQuery library, extract the contents into a folder. Within this folder we will be creating our html and jQuery example. Setting up jQuery is this simple!</p>
<h1>Hello World using jQuery</h1>
<p>Using a text or html editor of your choice, create a new html document with the following code. Make sure you save the document in the same folder where you extracted the contents of the jQuery library downloaded, as stated above. </p>
<p><code>1:&lt;html&gt;<br />
2:&lt;head&gt;<br />
3:&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;<br />
4:&lt;script type="text/javascript"&gt;<br />
&lt;!--   //our javascript will come in here --&gt;<br />
5:&lt;/script&gt;<br />
6:&lt;title&gt;Our jQuery Hello World&lt;/title&gt;<br />
7:&lt;/head&gt;<br />
8:&lt;body&gt;<br />
9: &lt;!- - All our html here --&gt;<br />
10:&lt;/body&gt;<br />
11:&lt;/html&gt;</code></p>
<p>If we open the above html page in a web browser. The web browser will only load the library and will not be doing anything further.</p>
<p>Before we move ahead, just a reminder to you guys. What ever we are going to do with jQuery, would only involve reading or manipulating the DOM. It would be sound logic, to do whatever we want to with jQuery after the DOM has loaded into the browser completely.</p>
<p>Here is how the above code is modified to our needs.</p>
<p><code>1:&lt;html&gt;<br />
2:&lt;head&gt;<br />
3:&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;<br />
4:&lt;script type="text/javascript"&gt;<br />
5:$(document).ready(function() {<br />
6:   // do stuff when DOM is ready; in our case hello world<br />
7: $("a").click(function() {<br />
8:  alert("Hello world!");<br />
9: });<br />
10:});<br />
11:&lt;/script&gt;<br />
12:&lt;title&gt;Our jQuery Hello World&lt;/title&gt;<br />
13:&lt;/head&gt;<br />
14:&lt;body&gt;<br />
15:&lt;a href=”#”&gt;Click Here&lt;/a&gt;<br />
16:&lt;/body&gt;<br />
17:&lt;/html&gt;</code></p>
<p>Provided the jQuery library (jQuery.js) and the html file you created are in the same directory; the above code would throw an alert when ever any anchor tags are clicked on.</p>
<h1>Explanation of Hello World jQuery</h1>
<p><strong>Line 3:</strong> Include the jQuery Library, making sure the src path is correct.<br />
<strong>Line 5-10:</strong> We first register a ready event for the document. Once the DOM is ready all anchor tags within the document when clicked will show an alert  saying “hello world”. $(“a”) is jQuery selector tool or method, which selects all “a” or all anchor elements. ‘$’ is an abbreviation or a substitute for the jQuery “class”. $() would construct a new object of the jQuery class. The call to the click() function again using the jQuery object would bind all click events of all anchor tags and would execute the provided lines of code. Simple, isn’t it.<br />
<strong>Line15:</strong> Since this line is an &lt;a&gt; tag, all clicks would result in a hello world alert.</p>
<p>This is just one facet of jQuery. If we were trying to do the same using plain javascript, we would have manually specify the alert code in all anchor tags within the html document. With, maybe, 5 lines of code, we did that using jQuery. Makes Sense?</p>
<p>In our further articles we will be exploring further into jQuery. Do leave comments.</p>
<h1>jQuery hello world Resource</h1>
<p>jQuery Library@ http://docs.jquery.com/Downloading_jQuery<br />
jQuery starterkit@ http://docs.jquery.com/images/c/c7/Jquery-starterkit.zip</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery&amp;bodytext=Writing%20a%20%E2%80%9Chello%20world%E2%80%9D%20script%20using%20jQuery%20is%20fairly%20simple.%20This%20article%20is%20just%20a%20very%20brief%20introduction%20on%20writing%20scripts%20using%20jQuery.%20This%20article%20also%20assumes%20basic%20knowledge%20of%20JavaScript%20and%20DOM%20%28Document%20Object%20Model%29.%20We%20will%20not%20be%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery&amp;annotation=Writing%20a%20%E2%80%9Chello%20world%E2%80%9D%20script%20using%20jQuery%20is%20fairly%20simple.%20This%20article%20is%20just%20a%20very%20brief%20introduction%20on%20writing%20scripts%20using%20jQuery.%20This%20article%20also%20assumes%20basic%20knowledge%20of%20JavaScript%20and%20DOM%20%28Document%20Object%20Model%29.%20We%20will%20not%20be%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery&amp;notes=Writing%20a%20%E2%80%9Chello%20world%E2%80%9D%20script%20using%20jQuery%20is%20fairly%20simple.%20This%20article%20is%20just%20a%20very%20brief%20introduction%20on%20writing%20scripts%20using%20jQuery.%20This%20article%20also%20assumes%20basic%20knowledge%20of%20JavaScript%20and%20DOM%20%28Document%20Object%20Model%29.%20We%20will%20not%20be%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;t=Hello%20World%20with%20jQuery" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Hello%20World%20with%20jQuery&amp;body=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Writing%20a%20%E2%80%9Chello%20world%E2%80%9D%20script%20using%20jQuery%20is%20fairly%20simple.%20This%20article%20is%20just%20a%20very%20brief%20introduction%20on%20writing%20scripts%20using%20jQuery.%20This%20article%20also%20assumes%20basic%20knowledge%20of%20JavaScript%20and%20DOM%20%28Document%20Object%20Model%29.%20We%20will%20not%20be%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;t=Hello%20World%20with%20jQuery" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;submitHeadline=Hello%20World%20with%20jQuery&amp;submitSummary=Writing%20a%20%E2%80%9Chello%20world%E2%80%9D%20script%20using%20jQuery%20is%20fairly%20simple.%20This%20article%20is%20just%20a%20very%20brief%20introduction%20on%20writing%20scripts%20using%20jQuery.%20This%20article%20also%20assumes%20basic%20knowledge%20of%20JavaScript%20and%20DOM%20%28Document%20Object%20Model%29.%20We%20will%20not%20be%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;exttitle=Hello%20World%20with%20jQuery" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Hello%20World%20with%20jQuery&amp;url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;h=Hello%20World%20with%20jQuery" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fhello-world-with-jquery&amp;title=Hello%20World%20with%20jQuery" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/hello-world-with-jquery/feed</wfw:commentRss>
		</item>
		<item>
		<title>A Date With jQuery.</title>
		<link>http://domainfunk.com/a-date-with-jquery</link>
		<comments>http://domainfunk.com/a-date-with-jquery#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:30:57 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[javascript libraries]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=3</guid>
		<description><![CDATA[  
Ask any JavaScript guru, what keeps them occupied today? A synchronous and obvious answer would be Ajax or “asynchronous JavaScript and XML”.  As time passes by, Ajax is maturing and getting more complex day by day. So much so that many web biggies, like Google, Yahoo and Microsoft have introduced their own JavaScript [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/a-date-with-jquery&amp;t=A+Date+With+jQuery.&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/a-date-with-jquery&amp;title=A+Date+With+jQuery.&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="http://domainfunk.com/wp-content/uploads/2008/11/screen-capture-6.jpg" title="jQuery" rel="lightbox[3]"><img class="size-medium wp-image-9" title="jQuery" src="http://domainfunk.com/wp-content/uploads/2008/11/screen-capture-6.jpg" alt="what is jQuery" width="262" height="87" align="left" /></a></p>
<p>Ask any JavaScript guru, what keeps them occupied today? A synchronous and obvious answer would be Ajax or “asynchronous JavaScript and XML”.  As time passes by, Ajax is maturing and getting more complex day by day. So much so that many web biggies, like Google, Yahoo and Microsoft have introduced their own JavaScript libraries.</p>
<p>JavaScript libraries are a collection of pre-written JavaScript controls and classes. JavaScript libraries make it easier for web developers to develop and deploy amazing, fantastically interactive websites and web applications in a fast and headache less way. Most JavaScript libraries today are built and provided around the sphere of Ajax, with Ajax being used widely and getting older and more complex everyday, these libraries offer a fast and almost “bug” less experience while developing and deploying websites. One such JavaScript library would be jQuery.</p>
<p>So, this brings us back to the question,</p>
<h1>what is jQuery and Why jQuery over other libraries?</h1>
<p>jQuery is a wonderful, power packed library that makes adding wonderful interactivity to your web pages and web sites easy and a childs play. With only a few lines of code, it would add div effects, roll over’s that are interactive and a lot more. jQuery, takes the mundane out of writing scripts using JavaScript and Ajax. If you are a Webmaster, you may have heard about moo tools, Google’s Ajax API, Yahoo’s Ajax base UI, and wonderful Scriptaculous and prototype and maybe even used these. All these, like jQuery are little powerhouses of dynamism for your websites, alternatively known as JavaScript Libraries.</p>
<p>jQuery was written and brought to us Wally’s by John Resig. For more on him you can visit http://ejohn.org.</p>
<p>So, if so many JavaScript libraries already exist</p>
<h1>why jQuery?</h1>
<p>Unlike most other JavaScript libraries, jQuery works in a different manner. What sets it apart is something known as “Chainablity”. This is somewhat related and like object oriented programming. For one, jQuery generated code is less heavier or smaller than prototypes. Unlike jQuery, which uses OO concepts, prototype – as a JavaScript library, only encourages them. Even if you have used other JavaScript libraries, I, as web developer would definitely suggest you guys at least trying out jQuery. Its simple, short and sweet  and Its powerful, light and fun!</p>
<p>If you have been up and date on your reading skills as a Webmaster, you would know that jQuery, recently was adopted by Microsoft and Nokia as part of their official developmental platform. More about this @ http://jquery.com/blog/2008/09/28/jquery-microsoft-nokia/.</p>
<p>Not only that Google, Yahoo, Dell, Bank Of America, NBC, digg and other biggies also have adopted and used jQuery for developing and deploying their website or website based products.</p>
<h1>Why should you use jQuery?</h1>
<p>As mentioned above, jQuery is simple. Have a look at the tutorials here http://docs.jquery.com/Tutorials:How_jQuery_Works and you would know what I mean by simple! With jQuery, a Webmaster or web developer could accomplish a lot in three lines of code, that’s it! Above all, jQuery is more so graceful and smooth.</p>
<p>Here is a small e.g. from jquery.com</p>
<p><a href="http://domainfunk.com/wp-content/uploads/2008/11/screen-capture-5.jpg" title="jquery code example" rel="lightbox[3]"><img class="size-medium wp-image-7" title="jquery code example" src="http://domainfunk.com/wp-content/uploads/2008/11/screen-capture-5-300x38.jpg" alt="jquery code example" width="254" height="32" /></a></p>
<p>The concept of jQuery is different than others and arguably simpler and in some cases shorter.</p>
<h1>When should you use jQuery?</h1>
<p>You should use jQuery, when you need control over your DOM objects. This might translate to, when you want to use Ajax to spruce up and power your pages with almost no or effortless code, that is easier to debug and write and light to run, that is when you should use jQuery.</p>
<p>If you are looking for some heavy animation, you can couple jQuery with other libraries like prototype and scriptaculous.</p>
<h1>Where can you get jQuery and other JavaScript libraries?</h1>
<p>jQuery is free and is available at http://jquery.com/. Its small ~15kb and you can find a lot of tutorials and discussions too.</p>
<h1>What about other JavaScript libraries?</h1>
<p>You can get your hands on:<br />
prototype @ www.prototypejs.org<br />
scriptaculous @ www.script.aculo.us<br />
mootools @ www.mootools.net</p>
<p>For a full list of other JavaScript libraries you can visit http://javascriptlibraries.com/ this site has an extensive and categorized list of JavaScript libraries.</p>
<p>This should keep you guys digging and busy <img src='http://domainfunk.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Have a good one!<br />
My jQuery motto: <strong>jQuery - Easier than getting laid on the first date!</strong><br />
I would add more resources if you guys want them.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery.&amp;bodytext=%0D%0A%0D%0AAsk%20any%20JavaScript%20guru%2C%20what%20keeps%20them%20occupied%20today%3F%20A%20synchronous%20and%20obvious%20answer%20would%20be%20Ajax%20or%20%E2%80%9Casynchronous%20JavaScript%20and%20XML%E2%80%9D.%C2%A0%20As%20time%20passes%20by%2C%20Ajax%20is%20maturing%20and%20getting%20more%20complex%20day%20by%20day.%20So%20much%20so%20that%20many%20web%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery.&amp;annotation=%0D%0A%0D%0AAsk%20any%20JavaScript%20guru%2C%20what%20keeps%20them%20occupied%20today%3F%20A%20synchronous%20and%20obvious%20answer%20would%20be%20Ajax%20or%20%E2%80%9Casynchronous%20JavaScript%20and%20XML%E2%80%9D.%C2%A0%20As%20time%20passes%20by%2C%20Ajax%20is%20maturing%20and%20getting%20more%20complex%20day%20by%20day.%20So%20much%20so%20that%20many%20web%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery.&amp;notes=%0D%0A%0D%0AAsk%20any%20JavaScript%20guru%2C%20what%20keeps%20them%20occupied%20today%3F%20A%20synchronous%20and%20obvious%20answer%20would%20be%20Ajax%20or%20%E2%80%9Casynchronous%20JavaScript%20and%20XML%E2%80%9D.%C2%A0%20As%20time%20passes%20by%2C%20Ajax%20is%20maturing%20and%20getting%20more%20complex%20day%20by%20day.%20So%20much%20so%20that%20many%20web%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;t=A%20Date%20With%20jQuery." title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=A%20Date%20With%20jQuery.&amp;body=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery.&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=%0D%0A%0D%0AAsk%20any%20JavaScript%20guru%2C%20what%20keeps%20them%20occupied%20today%3F%20A%20synchronous%20and%20obvious%20answer%20would%20be%20Ajax%20or%20%E2%80%9Casynchronous%20JavaScript%20and%20XML%E2%80%9D.%C2%A0%20As%20time%20passes%20by%2C%20Ajax%20is%20maturing%20and%20getting%20more%20complex%20day%20by%20day.%20So%20much%20so%20that%20many%20web%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;t=A%20Date%20With%20jQuery." title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;submitHeadline=A%20Date%20With%20jQuery.&amp;submitSummary=%0D%0A%0D%0AAsk%20any%20JavaScript%20guru%2C%20what%20keeps%20them%20occupied%20today%3F%20A%20synchronous%20and%20obvious%20answer%20would%20be%20Ajax%20or%20%E2%80%9Casynchronous%20JavaScript%20and%20XML%E2%80%9D.%C2%A0%20As%20time%20passes%20by%2C%20Ajax%20is%20maturing%20and%20getting%20more%20complex%20day%20by%20day.%20So%20much%20so%20that%20many%20web%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;exttitle=A%20Date%20With%20jQuery." title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=A%20Date%20With%20jQuery.&amp;url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;h=A%20Date%20With%20jQuery." title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fa-date-with-jquery&amp;title=A%20Date%20With%20jQuery." title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/a-date-with-jquery/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
