<?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>Blogfreakz - Web Design and Web Development resources &#187; Ajax</title>
	<atom:link href="http://blogfreakz.com/category/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Thu, 17 May 2012 00:27:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How To Add A &#8220;Load More Posts&#8221; Button In WordPress</title>
		<link>http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 10:17:01 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26779</guid>
		<description><![CDATA[Today&#8217;s featured WordPress tutorial comes from Michael Martin and it&#8217;s about replacing the &#8220;Older Posts&#8221; link on your blog with a button that extends the length of the current web page instead of reloading it; it is similar to how you view older tweets on Twitter. A partial screenshot of the button You can check [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s featured WordPress tutorial comes from <a href="http://www.problogdesign.com/author/admin/"><strong>Michael Martin</strong></a> and it&#8217;s about replacing the &#8220;Older Posts&#8221; link on your blog with a button that extends the length of the current web page instead of reloading it; it is similar to how you view older tweets on Twitter.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-26780" title="Load More Posts" src="http://blogfreakz.com/wp-content/uploads/2012/04/Load-More-Posts.jpg" alt="Load More Posts How To Add A Load More Posts Button In WordPress" width="344" height="302" /><em>A partial screenshot of the button</em></p>
<p>You can check it out on the <a href="http://www.problogdesign.com/demo/ajax-load-posts/"><strong>demo</strong></a> here.</p>
<p>In Michael&#8217;s tutorial, you&#8217;ll be using AJAX to create the plugin which will have the following features:</p>
<ul>
<li>Multiple clicks – First clicks will load page 2?s posts, second will load page 3 etc.)</li>
<li>Check for posts first – If there are no more posts that can be loaded, we’ll tell the user.</li>
<li>Degrade gracefully – If a visitor doesn’t use JavaScript, we won’t change the site at all.</li>
</ul>
<p>Below is a snippet taken from the javascript that makes the AJAX call:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">$('.pbd-alp-placeholder-'+ pageNum).load(nextLink + ' .post',</span></pre>
<pre><span style="color: #003366;">function() {</span></pre>
<pre><span style="color: #003366;">//   Update page number and nextLink.</span></pre>
<pre><span style="color: #003366;">pageNum++;</span></pre>
<pre><span style="color: #003366;">nextLink   = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);</span></pre>
<pre><span style="color: #003366;">//   Add a new placeholder, for when user clicks again.</span></pre>
<pre><span style="color: #003366;">$('#pbd-alp-load-posts')</span></pre>
<pre><span style="color: #003366;">.before('&lt;div  &gt;&lt;/div&gt;')</span></pre>
<pre><span style="color: #003366;">//   Update the button message.</span></pre>
<pre><span style="color: #003366;">if(pageNum   &lt;= max) {</span></pre>
<pre><span style="color: #003366;">$('#pbd-alp-load-posts   a').text('Load More Posts');</span></pre>
<pre><span style="color: #003366;">}   else {</span></pre>
<pre><span style="color: #003366;">$('#pbd-alp-load-posts   a').text('No more posts to load.');</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">);</span></pre>
</td>
</tr>
</tbody>
</table>
<p>On that note, if you want to see the rest of the code, you can download the completed files as a <a href="http://www.problogdesign.com/uploads/pbd-ajax-load-posts.zip"><strong>plugin.</strong></a> All you have to do is upload them in to your WordPress directory and activate it. But if you want to know more about the plugin&#8217;s nuts and bolts, you can check out Michael’s tutorial by <a href="http://www.problogdesign.com/wordpress/load-next-wordpress-posts-with-ajax/"><strong>clicking here</strong></a>.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress load more posts">wordpress load more posts</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="ajax load more posts wordpress">ajax load more posts wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="load more posts wordpress">load more posts wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="pbd-alp-load-posts">pbd-alp-load-posts</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="load more on wordpress posts">load more on wordpress posts</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="load more post button wordpress">load more post button wordpress</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress page 0">wordpress page 0</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress load more posts button">wordpress load more posts button</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="wordpress load more posts ajax">wordpress load more posts ajax</a></li>
<li><a href="http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/" title="how do i create a load more button for rss feeds?">how do i create a load more button for rss feeds?</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/how-to-add-a-load-more-posts-button-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Slideshow With HTML5</title>
		<link>http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/</link>
		<comments>http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 10:54:59 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Gallery/Carousel/Slider]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26627</guid>
		<description><![CDATA[Finally, there’s no need for you to upload a PowerPoint (.pps) file and embed a code on your webpage just to be able to display a slideshow presentation. Here’s a great script I found over at AjaxShake that’ll teach you how to create an amazing slideshow in an HTML5 environment! The code is created by [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>Finally, there’s no need for you to upload a PowerPoint (.pps) file and embed a code on your webpage just to be able to display a slideshow presentation. Here’s a great script I found over at <strong><a href="http://www.ajaxshake.com/">AjaxShake</a></strong> that’ll teach you how to create an amazing slideshow in an HTML5 environment!</p>
<p><img class="aligncenter size-full wp-image-26628" title="HTML5 slideshow" src="http://blogfreakz.com/wp-content/uploads/2012/04/HTML5-slideshow.jpg" alt="HTML5 slideshow Create a Slideshow With HTML5" width="555" height="299" /></p>
<p>The code is created by <a href="http://code.google.com/u/115652729569082644519/"><strong>Luke Mahe</strong></a> and <a href="http://code.google.com/u/mwichary@google.com/"><strong>Marcin Wichary</strong></a>. Using it is pretty easy and simple; just copy/paste the code in a new file and save it in your hard drive. Once you’re ready to use it, you can just edit the content to your liking. Two templates are also available.</p>
<p>Click on the respective links for more info about the <strong><a href="http://code.google.com/p/html5slides/" target="_blank">code</a></strong> and its <strong><a href="http://html5slides.googlecode.com/svn/trunk/template/index.html">demo</a></strong>.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="slideshow html5">slideshow html5</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="html5 slideshow">html5 slideshow</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="how to make a slideshow in html5">how to make a slideshow in html5</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="slideshow in html5">slideshow in html5</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="html5 slideshow code">html5 slideshow code</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="how to create a slideshow in html5">how to create a slideshow in html5</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="slideshow en html5">slideshow en html5</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="html5 slide show">html5 slide show</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="the future development of ppt and web slide show">the future development of ppt and web slide show</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/" title="slideshow mit html5">slideshow mit html5</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-a-slideshow-with-html5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use Ajax to Save Changes in Contenteditable as JSON</title>
		<link>http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/</link>
		<comments>http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 08:58:28 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26581</guid>
		<description><![CDATA[Contents of any HTML5 element with a contenteditable attribute can be live-edited inside the browser window. But any changes that you apply won&#8217;t be saved on the actual document itself that is located in the server, so these changes won&#8217;t appear anymore once you refresh the page. To get around this and have the data [...]]]></description>
			<content:encoded><![CDATA[<p>Contents of any HTML5 element with a <strong>contenteditable</strong> attribute can be live-edited inside the browser window. But any changes that you apply won&#8217;t be saved on the actual document itself that is located in the server, so these changes won&#8217;t appear anymore once you refresh the page.</p>
<p>To get around this and have the data saved is to wait for the Return key to be pressed, which then sends the new inner HTML of the element as an AJAX call and blurs the element. you can then press Esc to return the element to its pre-edited state.</p>
<p>You can see more of this in Remy Sharp&#8217;s <a href="http://jsbin.com/owavu3"><strong>demo</strong></a> .</p>
<p><strong>JavaScript</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">document.addEventListener('keydown', function (event) {</span></pre>
<pre><span style="color: #003366;">var esc = event.which == 27,</span></pre>
<pre><span style="color: #003366;">nl = event.which == 13,</span></pre>
<pre><span style="color: #003366;">el = event.target,</span></pre>
<pre><span style="color: #003366;">input = el.nodeName != 'INPUT'   &amp;&amp; el.nodeName != 'TEXTAREA',</span></pre>
<pre><span style="color: #003366;">data = {};</span></pre>
<pre><span style="color: #003366;">if (input) {</span></pre>
<pre><span style="color: #003366;">if (esc) {</span></pre>
<pre><span style="color: #003366;">// restore state</span></pre>
<pre><span style="color: #003366;">document.execCommand('undo');</span></pre>
<pre><span style="color: #003366;">el.blur();</span></pre>
<pre><span style="color: #003366;">} else if (nl) {</span></pre>
<pre><span style="color: #003366;">// save</span></pre>
<pre><span style="color: #003366;">data[el.getAttribute('data-name')] = el.innerHTML;</span></pre>
<pre><span style="color: #003366;">// we could send an ajax request to   update the field</span></pre>
<pre><span style="color: #003366;">/*</span></pre>
<pre><span style="color: #003366;">$.ajax({</span></pre>
<pre><span style="color: #003366;">url:   window.location.toString(),</span></pre>
<pre><span style="color: #003366;">data: data,</span></pre>
<pre><span style="color: #003366;">type: 'post'</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">*/</span></pre>
<pre><span style="color: #003366;">log(JSON.stringify(data));</span></pre>
<pre><span style="color: #003366;">el.blur();</span></pre>
<pre><span style="color: #003366;">event.preventDefault();</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}, true);</span></pre>
<pre><span style="color: #003366;">function log(s) {</span></pre>
<pre><span style="color: #003366;">document.getElementById('debug').innerHTML = 'value changed to: ' + s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="saving changes after using contenteditable">saving changes after using contenteditable</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable save changes">contenteditable save changes</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable save">contenteditable save</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable ajax">contenteditable ajax</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable tutorial">contenteditable tutorial</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="create website with contenteditable">create website with contenteditable</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable undo">contenteditable undo</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="contenteditable wordpress">contenteditable wordpress</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="how to save contenteditable changes">how to save contenteditable changes</a></li>
<li><a href="http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/" title="save contenteditable to database field">save contenteditable to database field</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/use-ajax-to-save-changes-in-contenteditable-as-json/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create AJAX Loading Animation with CSS3</title>
		<link>http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/</link>
		<comments>http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 06:00:47 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[loading animation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25500</guid>
		<description><![CDATA[Now we don’t have to rely on animated gifs in creating AJAX loading animation effects. This CSS3 tutorial will teach us how to create three different types of loading animation. Let’s start off with our HTML markup. HTML Markup &#60;div id='loading'&#62; &#60;div id='Column1' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column2' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column3' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column4' class='Columns'&#62;&#60;/div&#62; &#60;div id='Column5' [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"></span></p>
<p>Now we don’t have to rely on animated gifs in creating AJAX loading animation effects. This CSS3 tutorial will teach us how to create three different types of loading animation.</p>
<p><img class="aligncenter size-full wp-image-25501" title="Animation" src="http://blogfreakz.com/wp-content/uploads/2012/02/Animation.jpg" alt="Animation Create AJAX Loading Animation with CSS3" width="404" height="116" /></p>
<p><em> </em>Let’s start off with our HTML markup.</p>
<p><strong>HTML Markup</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;div id='loading'&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column1'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column2'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column3'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column4'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column5'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id='Column6'   class='Columns'&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Each &lt;div class=’Columns’&gt; basically represents each of the bars in our animated loader. Now on to CSS!</p>
<p><strong>CSS Markup</strong> for the <span style="text-decoration: underline;">first</span> loading animation</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">#loading{</span></pre>
<pre><span style="color: #003366;">margin-top:30px;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">width:95px;</span></pre>
<pre><span style="color: #003366;">height:32px;</span></pre>
<pre><span style="color: #003366;">background-color:#779ec2;</span></pre>
<pre><span style="color: #003366;">margin-left:30px;</span></pre>
<pre><span style="color: #003366;">/* CSS3   Border  Radius for rounded corner */</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius:   5px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 5px;</span></pre>
<pre><span style="color: #003366;">border-radius: 5px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.Columns{</span></pre>
<pre><span style="color: #003366;">background-color:#fff;</span></pre>
<pre><span style="color: #003366;">border:1px solid   #fff;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">height:30px;</span></pre>
<pre><span style="color: #003366;">margin-left:5px;</span></pre>
<pre><span style="color: #003366;">width:10px;</span></pre>
<pre><span style="color: #003366;">/* Here we will   define an animation name and then we will animate it later */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-name:   animation;</span></pre>
<pre><span style="color: #003366;">/* total time   for animation to complete one cycle */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-duration: 3s;</span></pre>
<pre><span style="color: #003366;">/* Number of   loops for animation cycle we set it infinite */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-iteration-count: infinite;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-direction: linear;</span></pre>
<pre><span style="color: #003366;">/* Initially the   opacity of Columns is zero */</span></pre>
<pre><span style="color: #003366;">opacity:0;</span></pre>
<pre><span style="color: #003366;">/* Scale it to   0.8 in starting */</span></pre>
<pre><span style="color: #003366;">-webkit-transform:scale(0.8);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column1{</span></pre>
<pre><span style="color: #003366;">/* Column1   animation delay by .3 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .3s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column2{</span></pre>
<pre><span style="color: #003366;">/* Column2   animation delay by .4 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .4s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column3{</span></pre>
<pre><span style="color: #003366;">/* Column3   animation delay by .5 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .5s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column4{</span></pre>
<pre><span style="color: #003366;">/* Column4   animation delay by .6 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .6s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column5{</span></pre>
<pre><span style="color: #003366;">/* Column5   animation delay by .7 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .7s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column6{</span></pre>
<pre><span style="color: #003366;">/* Column6   animation delay by .8 seconds */</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .8s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">/* Earlier we have defined animation-name as animation now the   animation properties will set here */</span></pre>
<pre><span style="color: #003366;">@-webkit-keyframes animation{</span></pre>
<pre><span style="color: #003366;">/* opacity of Column   will be 0 at beginning of animation */</span></pre>
<pre><span style="color: #003366;">0%{opacity:0;}</span></pre>
<pre><span style="color: #003366;">/* opacity of Column   will be 1 at middle of animation */</span></pre>
<pre><span style="color: #003366;">50%{opacity:1;}</span></pre>
<pre><span style="color: #003366;">/* Back to   opacity zero when animation completes its cycle */</span></pre>
<pre><span style="color: #003366;">100%{opacity:0;}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;">Second</span> loading animation <strong>CSS Markup</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">#loading1{</span></pre>
<pre><span style="color: #003366;">margin-top:30px;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">margin-left:30px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.Columns1{</span></pre>
<pre><span style="color: #003366;">background-color:#39F;</span></pre>
<pre><span style="color: #003366;">border:1px solid   #00F;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">height:30px;</span></pre>
<pre><span style="color: #003366;">margin-left:5px;</span></pre>
<pre><span style="color: #003366;">width:8px;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-name:   animation1;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-duration: 2s;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-iteration-count: infinite;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-direction: linear;</span></pre>
<pre><span style="color: #003366;">opacity:0.2;</span></pre>
<pre><span style="color: #003366;">-webkit-transform:scale(0.6);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column11{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .3s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column22{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .4s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column33{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .5s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column44{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .6s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column55{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .7s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#Column66{</span></pre>
<pre><span style="color: #003366;">-webkit-animation-delay: .8s;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">@-webkit-keyframes animation1{</span></pre>
<pre><span style="color: #003366;">0%{-webkit-transform:   scale(.9);opacity:1;}</span></pre>
<pre><span style="color: #003366;">100%{-webkit-transform:   scale(.2);opacity:0.1;}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;">Third</span> loading animation <strong>CSS Markup</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre>#loading2{</pre>
<pre>margin-top:30px;</pre>
<pre>float:left;</pre>
<pre>margin-left:30px;</pre>
<pre>}</pre>
<pre>.Columns2{</pre>
<pre>-webkit-border-radius:   10px;</pre>
<pre>-moz-border-radius: 10px;</pre>
<pre>border-radius: 10px;</pre>
<pre>background-color:#39F;</pre>
<pre>float:left;</pre>
<pre>height:20px;</pre>
<pre>margin-left:5px;</pre>
<pre>width:20px;</pre>
<pre>-webkit-animation-name:   animation2;</pre>
<pre>-webkit-animation-duration: 2s;</pre>
<pre>-webkit-animation-iteration-count: infinite;</pre>
<pre>-webkit-animation-direction: linear;</pre>
<pre>opacity:0;</pre>
<pre>}</pre>
<pre>#Column111{</pre>
<pre>-webkit-animation-delay: .1s;</pre>
<pre>}</pre>
<pre>#Column222{</pre>
<pre>-webkit-animation-delay: .3s;</pre>
<pre>}</pre>
<pre>#Column333{</pre>
<pre>-webkit-animation-delay: .5s;</pre>
<pre>}</pre>
<pre>#Column444{</pre>
<pre>-webkit-animation-delay: .7s;</pre>
<pre>}</pre>
<pre>@-webkit-keyframes animation2{</pre>
<pre>0%{opacity:0;}</pre>
<pre>50%{opacity:1;}</pre>
<pre>100%{opacity:0;}</pre>
<pre>}</pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Pretty short, quick, and easy, isn’t it? Have fun using it in your website!</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="design ajax css3">design ajax css3</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="ajax loading animation">ajax loading animation</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="ajax loading">ajax loading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="loading">loading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="animation loading">animation loading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="ajaxloading">ajaxloading</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="loading animated image">loading animated image</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="animated loading image">animated loading image</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="css3 loading animation">css3 loading animation</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/" title="facebook loader animated gif image file">facebook loader animated gif image file</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-ajax-loading-animation-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rcarousel: A Continuous jQuery UI Carousel</title>
		<link>http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/</link>
		<comments>http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 08:50:41 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Gallery/Carousel/Slider]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Light Box]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[carousel]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24115</guid>
		<description><![CDATA[Before you toss this off as just another slider review, check out this innovative content slider and carousel made with jQuery, called the rcarousel. Created by front-end developer Wojciech rrh Ryrych, this continuous carousel is basically a jQuery UI widget which latest version (v1.1) was just released recently. Its inherent capabilities from its predecessor include [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="55m35 Rcarousel: A Continuous jQuery UI Carousel	" src="http://cdn.tripwiremagazine.com/wp-content/uploads/2011/06/55m35.jpg" title="rCarousel" class="alignnone" width="627" height="165" /></p>
<p align="left">Before you toss this off as just another slider review, check out this innovative content slider and carousel made with jQuery, called the <strong>rcarousel</strong>.</p>
<p align="left">Created by front-end developer <a href="http://identi.ca/rrh"><strong>Wojciech rrh Ryrych</strong></a>, this continuous carousel is basically a jQuery UI widget which latest version (v1.1) was just released recently. Its inherent capabilities from its predecessor include custom events and a simple API.</p>
<p align="left">Rcarousel supports HTML content: just place anything inside a DIV container, install the widget, and that&#8217;s it. It is highly customizable and allows the user to navigate through the content with bullets or set the scrolling to auto mode without navigation.</p>
<p align="left">What sets this carousel from the others is that it has the <a href="http://ryrych.github.com/rcarousel/examples/multi.html"><strong>multi carousel</strong></strong></a> feature!</p>
<p align="left">Check out the <a href="http://ryrych.github.com/rcarousel/examples/html.html"><strong>demo</strong></a>. Cool, isn&#8217;t it?</p>
<p align="left">You can customize the rcarousel&#8217;s appearance by indicating the number of visible elements and a step (number of elements to scroll by). Another nice feature is loading elements on demand at runtime via API. With little effort you can fetch XML, JSON, parse them and then add elements with ‘append’ method.</p>
<p align="left">Its other features are:<br />
•	Many options to choose from<br />
•	Simple to use<br />
•	Supports IMG images with links<br />
•	Auto mode<br />
•	Custom pagination</p>
<p align="left">Rcarousel supports many browsers and has been tested successfully in the following:<br />
•	Internet Explorer 7+<br />
•	Firefox 3.0+<br />
•	Chrome<br />
•	Opera 10.10+<br />
•	Safari 4.0.5+</p>
<p align="left">Click on the following links to download the <a href="https://github.com/ryrych/rcarousel/zipball/1.1"><strong>rcarousel</strong></a> or its <a href="https://github.com/ryrych/rcarousel"><strong>source code</strong></a>, and if needed, to report <a href="https://github.com/ryrych/rcarousel/issues"><strong>bugs</strong></a>.</p>
<p align="left">If you enjoyed this carousel, you may also want to consider using Ryrych&#8217;s jQuery UI mediabox, called<br />
<a href="http://ryrych.github.com/rlightbox2/"><strong>rlightbox2</strong> </a>.</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="rcarousel">rcarousel</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery ui carousel">jquery ui carousel</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="rcarousel jquery">rcarousel jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="continuous jquery carousel">continuous jquery carousel</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery carousel slider with lightbox">jquery carousel slider with lightbox</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery rcarousel">jquery rcarousel</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery light menu">jquery light menu</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery ui carrousel de videos">jquery ui carrousel de videos</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery navigation carousel">jquery navigation carousel</a></li>
<li><a href="http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/" title="jquery carousel">jquery carousel</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/rcarousel-a-continuous-jquery-ui-carousel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2012 Web Development and Tech Forecasts</title>
		<link>http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/</link>
		<comments>http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 12:00:24 +0000</pubDate>
		<dc:creator>Carmela@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Design News]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Mobile development]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[happy new year]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24002</guid>
		<description><![CDATA[AS we usher in 2012, the web development community has been coming up with several forecasts for the industry. Although most of this surrounds an influx of greater improvements in the technological frontier, it may also spell doom for some brands. The question is, how will these changes affect the entire tech landscape for users, [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>AS</strong> we usher in 2012, the web development community has been coming up with several forecasts for the industry. Although most of this surrounds an influx of greater improvements in the technological frontier, it may also spell doom for some brands. The question is, how will these changes affect the entire tech landscape for users, developers, designers, and marketers?</p>
<p align="left">Let&#8217;s check out some of the latest online buzz:</p>
<li>IT enterprise vendors seek to <a href="http://www.zdnet.com/blog/projectfailures/predicting-2012-rapid-implementation-in-focus/15099">reduce failures</a> from the past year and use them as leverage for future improvements.</li>
<p></p>
<li>Mobile competition becomes steeper with <a href="http://gigaom.com/mobile/16-predictions-for-mobile-in-2012/">rapid developments</a> in functionality, though this may result in some popular mobile brands falling behind the race.</li>
<p></p>
<li>Dominant frameworks such as jQuery, Node.js, Socket.io, Fitvids, JavascriptMVC and SproutCore, as well as HTML5 will <a href="http://www.digitalsurgeons.com/blog/2012-digital-marketing-predictions/">take the lead</a> in the web development industry. Same goes for software as independent support for hardware.</li>
<p></p>
<li>Some tech editors predict exciting, if sometimes drastic changes in the industry, from the rise of OpenFlow to patent wars, to the resurrection of the music distribution business, all founded on a common theme: <a href="http://www.digitalsurgeons.com/blog/2012-digital-marketing-predictions/">consumerization</a>.</li>
<p></p>
<p align="left">Awesome, isn&#8217;t it? And if you&#8217;re still hankering for more juicy info on what&#8217;s in store for us this year, check out this list of <a href="http://www.htmlcut.com/blog/web-design-trends-2011-predictions-2012.html">web design trends</a> and <a href="http://www.pcworld.com/article/152683/15_hot_new_technologies_that_will_change_everything.html">15 hot technologies</a>, which are probably more than enough to last us the next 6 months.</p>
<p align="left">
<h2>And with that, we at Blogfreakz.Com wish you all a wonderful 2012!</h2>
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="jquery 2012">jquery 2012</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="2012 jquery">2012 jquery</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="carmela maraan">carmela maraan</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="design2012 forecast">design2012 forecast</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="2012 forecasts and trends for ecommerce">2012 forecasts and trends for ecommerce</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="jquery website design2012">jquery website design2012</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="news webdesign 2012">news webdesign 2012</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="socket io js jquery 2012">socket io js jquery 2012</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="templates for singers jquery html5 free">templates for singers jquery html5 free</a></li>
<li><a href="http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/" title="jquery plugins 2012">jquery plugins 2012</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/2012-web-development-and-tech-forecasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 jQuery Plugins To Jazz Up Your Website</title>
		<link>http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/</link>
		<comments>http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 10:47:33 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=23950</guid>
		<description><![CDATA[The following jQuery plugins are great for for event management, animation and Ajax interactions, and will certainly turn your website into eye-candy for your visitors! Ninja UI – This plugin is one big pack of web interface:  it has buttons, icons, tooltips, sliders, and more!  Its design gets plenty of rave reviews for being beautiful, [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/attachment/jquerylogo256/' title='jquerylogo256'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2011/12/jquerylogo256-200x200.jpg" class="attachment-thumbnail" alt="jquerylogo256 200x200 7 jQuery Plugins To Jazz Up Your Website" title="jquerylogo256" /></a><br />
<a href='http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/attachment/blueberry_fruits-545711/' title='blueberry_fruits-545711'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2011/12/blueberry_fruits-545711-200x200.jpg" class="attachment-thumbnail" alt="blueberry fruits 545711 200x200 7 jQuery Plugins To Jazz Up Your Website" title="blueberry_fruits-545711" /></a><br />
<a href='http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/attachment/2-16/' title='2'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2011/12/211-200x200.jpg" class="attachment-thumbnail" alt="211 200x200 7 jQuery Plugins To Jazz Up Your Website" title="2" /></a><br />
The following jQuery plugins are great for for event management, animation and Ajax interactions, and will certainly turn your website into eye-candy for your visitors!</p>
<ol>
<li><a href="http://ninjaui.com/"><strong>Ninja UI</strong></a> – This plugin is one big pack of web interface:  it has buttons, icons, tooltips, sliders, and more!  Its design gets plenty of rave reviews for being beautiful, efficient and unobtrusive.</li>
<p>&nbsp;</p>
<li><a href="http://mobiscroll.com/"><strong>Mobiscroll</strong></a> – This one is optimized for touchscreen devices. Although it&#8217;s mainly used for scheduling tasks, dates, and appointments, it can also be used for other values such as images. It also works well as a dropdown list alternative. Check out its<a href="http://demo.mobiscroll.com/"> demo.</a></li>
<p>&nbsp;</p>
<li><a href="http://elycharts.com/"><strong>Elycharts</strong></a> &#8211; A pure Javascript charting library, this one is easy to use and completely customizable. With this you can create interactive charts with key features such as legend and label support, mouse tracking, tooltips, and animation. It doesn’t require any client side plugins like Flash or Java, and runs on the client browsers so installation isn&#8217;t necessary. View the <a href="http://elycharts.com/examples"> demo</a> here.</li>
<p>&nbsp;</p>
<li><a href="http://www.csslab.cl/2011/08/18/jquery-timelinr/"><strong>Timelinr</strong></a> &#8211; Thanks to its customizable layouts, speed, and transparency, you can say goodbye to boring old timelines. Check out its <a href="http://www.csslab.cl/ejemplos/timelinr/latest/horizontal.html"> demo</a>.</li>
<p>&nbsp;</p>
<li><a href="http://larsjung.de/fracs/"><strong>jQuery.fracs</strong></a> – This impressive plugin helps determine the visible fractions of an element that is currently in the viewport. It allows users to easily skip through different sections of a website, making it ideal for one-page websites. Get a load of the <a href="http://larsjung.de/fracs/demo/"> demo</a>.</li>
<p>&nbsp;</p>
<li><a href="http://www.pikachoose.com"/><strong>PikaChoose</strong></a> – This extremely lightweight jQuery slideshow plugin integrates smoothly with jCarousel and has API hooks for lightbox and Fancybox integration too.</li>
<p>&nbsp;</p>
<li><a href="http://marktyrrell.com/labs/blueberry/"><strong>Blueberry</strong></a> &#8211;  This image slider plugin was written specifically to work with responsive web layouts. Enjoy its responsiveness <a href="http://marktyrrell.com/labs/blueberry/">here</a>.</li>
</ol>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery">jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery eye catching">jquery eye catching</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery plugins">jquery plugins</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="fruits images 200 x200">fruits images 200 x200</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="fancybox touch screen overflow">fancybox touch screen overflow</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="eye catching plugin">eye catching plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery plugin photo">jquery plugin photo</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery eye catch">jquery eye catch</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="one big blueberry">one big blueberry</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery eye cathing">jquery eye cathing</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload Your Files with These 10 Powerful jQuery Uploader Plugins</title>
		<link>http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/</link>
		<comments>http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 02:21:23 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Upload]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[jQuery Plugins]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=23609</guid>
		<description><![CDATA[Today&#8217;s web developers are unstoppable about creating newer and better plugins for your web site, so I’ve gathered 10 of the most powerful jQuery File Uploaders for your web site or blog. One of the plugins featured here is the jQuery upload which lets you upload your files by Ajax style. Ajax Upload by Valums [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Today&#8217;s web developers are unstoppable about creating newer and better plugins for your web site, so I’ve gathered 10 of the most powerful jQuery File Uploaders for your web site or blog. One of the plugins featured here is the jQuery upload which lets you upload your files by Ajax style.</p>
<p><strong><a href="http://valums.com/ajax-upload/">Ajax Upload by Valums</a></strong></p>
<p align="left">Ajax Upload provides good user experiences everywhere. It uses XHR for multiple uploads of files with progress bar in FF3.6+, Safari4+, Chrome and goes back to the hidden iframe based-upload in other browsers.</p>
<p><strong><a href=" http://www.plupload.com/example_all_runtimes.php">Plupload v1.5.1.1</a></strong></p>
<p align="left">This file uploader lets you upload your files using Silverlight, Flash, HTML5 Gears and BrowserPlus. It also allows resizing of image and shows you its upload progress.</p>
<p><strong><a href="http://www.uploadify.com/demos/">Uploadify</a></strong></p>
<p align="left">This plugin combines Javascript and other known server-side languages. It has multiple file upload abilities and a large support community with the docs.</p>
<p><strong><a href="http://webdeveloperplus.com/jquery/ajax-multiple-file-upload-form-using-jquery/">Ajax Multiple File Upload Form using jQuery</a></strong></p>
<p align="left">This plugin permits the user to upload multiple files easily.</p>
<p><strong><a href="http://www.fyneworks.com/jquery/multiple-file-upload/">Multiple File Upload Plugin</a></strong></p>
<p align="left">This is an unobtrusive plugin which helps the user to select multiple files with ease, provides basic validation functionality, and helps identify errors without before you upload our files.</p>
<p><strong><a href="http://nixbox.com/demos/jquery-uploadprogress.php	">Uploadprogress v0.3 – jQuery + PHP plug-in</a></strong></p>
<p align="left">It allows users to select files individually and provides information about the uploading progress.</p>
<p><strong><a href=" http://malsup.com/jquery/form/file/	">jQuery Form Plugin</a></strong></p>
<p align="left">A basic file uploader form that allows you to test your files.</p>
<p><strong><a href="http://digitarald.de/project/fancyupload/3-0/showcase/photoqueue/">Fancy Upload – Swiff meets Ajax v3.0</a></strong></p>
<p align="left">This plugin is easy to set up, server-independent, uses MooTools to work on all modern browsers and styleable through XHTML and CSS. It features a multiple file selection menu and queued upload with animated progress bar.</p>
<p><strong><a href="http://blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/">SWFUpload jQuery Plugin</a></strong></p>
<p align="left">The SWFUploader, which was rewritten by Adam Royle, uses jQuery to make a real event dispatcher. It makes multiple SWFupload instances on single page easier to manage, completely separates SWFUpload object from UI codes, and has the ability to assign multiple callbacks per event.</p>
<p><strong><a href="http://pixeline.be/experiments/jqUploader/test.php">IqUploader</a></strong></p>
<p align="left">This plugin sends the file you choose the email address you input.</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery file upload">jquery file upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery upload">jquery upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery file upload plugin">jquery file upload plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery multiple file upload">jquery multiple file upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery multi file upload">jquery multi file upload</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="file uploader">file uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="html5 file upload progress bar">html5 file upload progress bar</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="multi upload jquery">multi upload jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery file uploader">jquery file uploader</a></li>
<li><a href="http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/" title="jquery upload progress in lightbox">jquery upload progress in lightbox</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/upload-your-files-with-these-10-powerful-jquery-uploader-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax AutoComplete For jQuery</title>
		<link>http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/</link>
		<comments>http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/#comments</comments>
		<pubDate>Thu, 12 May 2011 12:36:54 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[autocomplete]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19809</guid>
		<description><![CDATA[Ajax Autocomplete for jQuery is plugin for allows you to easily create autocomplete/autosuggest boxes for text input fields.It is built with focus on performance. Results for every query are cached and pulled from local cache for the same repeating query. If there are no results for particular query it stops sending requests to the server [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="Link to Ajax AutoComplete For jQuery"><img class="wppt_float_left" src="http://blogfreakz.com/wp-content/uploads/wp-post-thumbnail/2pfFAe.png" alt="2pfFAe Ajax AutoComplete For jQuery" title="" width="200" height="200" /></a><strong>Ajax Autocomplete for jQuery</strong> is plugin for allows you to easily create autocomplete/autosuggest boxes for text input fields.It is built with focus on performance. Results for every query  are cached and pulled from local cache for the same repeating query. If  there are no results for particular query it stops sending requests to  the server for other queries with the same root.</p>
<p><span id="more-19809"></span></p>
<p><a rel="nofollow" href="http://www.devbridge.com/projects/autocomplete/jquery/"><img class="alignnone size-full wp-image-19813" title="jquery-autocomplete" src="http://blogfreakz.com/wp-content/uploads/2011/05/jquery-autocomplete.png" alt="jquery autocomplete Ajax AutoComplete For jQuery" width="600" height="300" /></a></p>
<p>Web page that provides data for Ajax Autocomplete, for example autocomplete.ashx will receive GET request with querystring ?query=Li, and it must return JSON data.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="demo" rel="nofollow" href="http://www.devbridge.com/projects/autocomplete/jquery/" target="_blank">http://www.devbridge.com/projects/autocomplete/jquery/</a><br />
License:  MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="devbridge autocomplete tutorial">devbridge autocomplete tutorial</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="jquery autocomplete ajax">jquery autocomplete ajax</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="autocomplete jquery">autocomplete jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="jquery mobile autocomplete">jquery mobile autocomplete</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="jquery mobile autocomplete example">jquery mobile autocomplete example</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="autocomplete ajax">autocomplete ajax</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="jquery ajax autocomplete">jquery ajax autocomplete</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="autocomplete jquery mobile">autocomplete jquery mobile</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="jquerymobile autocomplete example">jquerymobile autocomplete example</a></li>
<li><a href="http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/" title="jquery mobile autocomplete ajax">jquery mobile autocomplete ajax</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/ajax-autocomplete-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Line Ajax Requests With jQuery-ahm</title>
		<link>http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/</link>
		<comments>http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 13:19:37 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18418</guid>
		<description><![CDATA[jquery-ahm is a light-weight jquery plugin that reduces ajax requests to one-line. jquery-ahm is a replacement for $.ajax. With $.ajax, every ajax request needs a callback, resulting in a lot of javascript. $.ahm reduces javascript code by letting the response data define the actual callbacks. Features Super light-weight: ~1KB minified Reduces ajax requests to one-line [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jqueryahm" rel="nofollow" href="http://www.jqueryahm.com/" target="_blank">jquery-ahm</a> is a light-weight jquery plugin that reduces ajax requests to one-line. jquery-ahm is a replacement for $.ajax. With $.ajax, every ajax request needs a callback, resulting in a lot of javascript. $.ahm reduces javascript code by letting the response data define the actual callbacks.</p>
<p><span id="more-18418"></span><br />
<a rel="nofollow" href="http://www.jqueryahm.com"><img class="alignnone size-full wp-image-18420" title="jquery-ahm" src="http://blogfreakz.com/wp-content/uploads/2011/04/jquery-ahm.jpg" alt="jquery ahm One Line Ajax Requests With jQuery ahm" width="600" height="300" /></a></p>
<h3>Features</h3>
<ul>
<li> Super light-weight: ~1KB minified</li>
<li> Reduces ajax requests to one-line (including ajax form validation)</li>
<li> No more custom callbacks for every ajax request</li>
<li> Lets back-end define post ajax callbacks (applied automagically)</li>
<li> Supports all jquery + custom callbacks in back-end code</li>
<li> Drop in replacement for $.ajax() (supports all $.ajax options)</li>
</ul>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="jqueryahm" rel="nofollow" href="http://www.jqueryahm.com/examples" target="_blank">http://www.jqueryahm.com/examples</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery single line ajax call">jquery single line ajax call</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery ajax one string">jquery ajax one string</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jQuery ajax end request">jQuery ajax end request</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="line jquery">line jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="one line ajax">one line ajax</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery single line news">jquery single line news</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery single line twitter">jquery single line twitter</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="Request-Line jquery">Request-Line jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery-ahm simple example">jquery-ahm simple example</a></li>
<li><a href="http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/" title="jquery-ahm wordpress">jquery-ahm wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/one-line-ajax-requests-with-jquery-ahm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

