<?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>Bloggerrific &#187; Javascript Tutorials</title>
	<atom:link href="http://www.davidjrush.com/blog/category/javascript-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidjrush.com</link>
	<description>David J. Rush is a web designer and usability consultant in Pittsburgh who freelances and blogs about anything web related.</description>
	<lastBuildDate>Thu, 05 Jan 2012 02:50:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Simple JQuery Tooltip</title>
		<link>http://www.davidjrush.com/blog/2011/12/simple-jquery-tooltip/</link>
		<comments>http://www.davidjrush.com/blog/2011/12/simple-jquery-tooltip/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 13:00:24 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[JQuery Tutorials]]></category>
		<category><![CDATA[speech bubbles]]></category>
		<category><![CDATA[tooltips]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/?p=1106</guid>
		<description><![CDATA[There are some great JQuery tooltip plugins out there, such as qTip2. In fact, I use qTip2 on this site, and on my fulltime employer&#8217;s site, College Prowler because of how robust I think it is. However, sometimes, on smaller sites, you don&#8217;t want to load all that excessive code built to work in hundreds [...]]]></description>
			<content:encoded><![CDATA[<p>There are some great JQuery tooltip plugins out there, such as <a href="http://craigsworks.com/projects/qtip2/" target="_blank">qTip2</a>. In fact, I use qTip2 on this site, and on my fulltime employer&#8217;s site, <a href="http://collegeprowler.com" target="_blank">College Prowler</a> because of how robust I think it is. However, sometimes, on smaller sites, you don&#8217;t want to load all that excessive code built to work in hundreds of different configurations just for a handful of tooltips. Well have no fear. Here&#8217;s how you can build a simple tooltip. Using a little JQuery, and some CSS3 (for the <a href="http://www.davidjrush.com/blog/2011/11/creating-a-css-speech-bubble/">speech bubble</a> discussed in my previous article and the question mark icon) you can make your own tooltips!</p>
<p>Here&#8217;s what we&#8217;ll be making:</p>

<div class="example">
<p>This sentence needs more of an explanation for the user. <span class="question">?</span></p>
<style type="text/css">
div.example p { margin: 0px; }
span.question { cursor: pointer; display: inline-block; font-size: 13px; width: 16px; height: 16px; background-color: #89A4CC; line-height: 16px; color: White; font-weight: bold; border-radius: 8px; text-align: center; position: relative; }
span.question:hover { background-color: #3D6199; }
div.tooltip { background-color: #3D6199; color: White; position: absolute; left: 25px; top: -25px; z-index: 1000000; width: 250px; border-radius: 5px; }
div.tooltip:before { border-color: transparent #3D6199 transparent transparent; border-right: 6px solid #3D6199; border-style: solid; border-width: 6px 6px 6px 0px; content: ""; display: block; height: 0; width: 0; line-height: 0; position: absolute; top: 40%; left: -6px; }
div.tooltip p { margin: 10px; color: White; }
</style>
<script type="text/javascript">
$(document).ready(function () {
$("span.question").hover(function () {
$(this).append('<div class="tooltip"><p>This is a tooltip. It is typically used to explain something to a user without taking up space on the page.</p></div>');
}, function () {
$("div.tooltip").remove();
});
});
</script>
</div>
<div class="clear"></div>
<p>Now let&#8217;s get into the code needed to produce the example. The HTML is actually very simple. We are going to inject the content for the tooltip using JQuery so we won&#8217;t even need anything to target except the link that you hover on that triggers it.<br />
<strong>Here&#8217;s the HTML:</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;p&gt;This sentence needs more of an explanation for the user. &lt;span class=&quot;question&quot;&gt;?&lt;/span&gt;&lt;/p&gt;</pre>
<p>The CSS looks pretty long. But in reality, it is built to my own personal liking. The &quot;question&quot; class applied to a span produces the question mark circle icon. You can easily do this with an image if you prefer, or apply it to a simple link with text or a question mark without any styling. Then there are two items for the &quot;tooltip&quot; class. The first item defines what the tooltip will look like (rounded borders, background color, text styling, etc.). The pseudo class of :before (or :after if you like) inserts an item before (or after) the element it is applied to. In this particular instance, the :before statement adds the tip to the tool, which you don&#8217;t need to use if you don&#8217;t want, or again, you can use an background image if you prefer.<br />
<strong>Here&#8217;s the CSS:</strong></p>
<pre class="brush: css; title: ; notranslate">
span.question {
  cursor: pointer;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #89A4CC;
  line-height: 16px;
  color: White;
  font-size: 13px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  position: relative;
}
span.question:hover { background-color: #3D6199; }
div.tooltip {
  background-color: #3D6199;
  color: White;
  position: absolute;
  left: 25px;
  top: -25px;
  z-index: 1000000;
  width: 250px;
  border-radius: 5px;
}
div.tooltip:before {
  border-color: transparent #3D6199 transparent transparent;
  border-right: 6px solid #3D6199;
  border-style: solid;
  border-width: 6px 6px 6px 0px;
  content: &quot;&quot;;
  display: block;
  height: 0;
  width: 0;
  line-height: 0;
  position: absolute;
  top: 40%;
  left: -6px;
}
div.tooltip p {
  margin: 10px;
  color: White;
}</pre>
<p>And lastly the Javascript is actually quite simple. You use the hover toggle event (hover, then unhover) to create it. On hover, we simply append the actual tooltip div and it&#8217;s content to the question mark icon. Then on unhover, we remove the tooltip element.<br />
<strong>And finally, here&#8217;s the Javascript:</strong></p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function () {
  $(&quot;span.question&quot;).hover(function () {
    $(this).append('&lt;div class=&quot;tooltip&quot;&gt;&lt;p&gt;This is a tooltip. It is typically used to explain something to a user without taking up space on the page.&lt;/p&gt;&lt;/div&gt;');
  }, function () {
    $(&quot;div.tooltip&quot;).remove();
  });
});
</pre>
<p>It really isn&#8217;t that bad, and it can easily be adjusted to work for several tooltips instead of just one. Got any questions? Comments? Just ask!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2011/12/simple-jquery-tooltip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JQuery: Creating a Text Watermark</title>
		<link>http://www.davidjrush.com/blog/2011/10/jquery-creating-a-textbox-text-watermark/</link>
		<comments>http://www.davidjrush.com/blog/2011/10/jquery-creating-a-textbox-text-watermark/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 12:00:35 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[JQuery Tutorials]]></category>
		<category><![CDATA[javascript basics]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[watermarks]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/?p=988</guid>
		<description><![CDATA[My post on creating a text watermark with javascript has been pretty popular. One comment had to do with being able to implement that watermark without being able to edit the HTML (only having access to CSS and Javascript). The easy solution to that is using JQuery. So as a follow up to that post, [...]]]></description>
			<content:encoded><![CDATA[<p>My post on creating a <a href="http://www.davidjrush.com/blog/2011/01/javascript-creating-a-simple-textbox-watermark-with-text/">text watermark with javascript</a> has been pretty popular. One comment had to do with being able to implement that watermark without being able to edit the HTML (only having access to CSS and Javascript). The easy solution to that is using JQuery. So as a follow up to that post, I wrote a quick tutorial on a text watermark using JQuery instead of plain old Javascript. Here is an example in action:</p>
<input id="inputTextboxId" type="text" />
<script type="text/javascript">
$(document).ready(function() {
   var watermark = 'textbox watermark text';
   $('#inputTextboxId').blur(function(){
      if ($(this).val().length == 0)
         $(this).val(watermark).addClass('watermark');
   }).focus(function(){
      if ($(this).val() == watermark)
         $(this).val('').removeClass('watermark');
   }).val(watermark).addClass('watermark');;
});
</script></p>
<style type="text/css">
   input#inputTextboxId { width: 200px; margin: 10px 0px 10px 200px; }
   input#inputTextboxId.watermark { color: #999; }
</style>
<p>To do this, you&#8217;ll need the following code:</p>
<p><strong>The HTML:</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;input id=&quot;inputTextboxId&quot; type=&quot;text&quot; /&gt;</pre>
<p><strong>The Javascript:</strong></p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function() {
  var watermark = '&lt;span&gt;textbox watermark text&lt;/span&gt;';
  $('#inputTextboxId').blur(function(){
    if ($(this).val().length == 0)
      $(this).val(watermark).addClass('watermark');
  }).focus(function(){
    if ($(this).val() == watermark)
      $(this).val('').removeClass('watermark');
  }).val(watermark).addClass('watermark');
});</pre>
<p>This javascript binds an event to both the blur and focus events of the input field. When the field gains focus (someone clicks in), the JS checks to see if the value of the input field is equivalent to the watermark, in which case it will clear it. When the field loses focus (someone clicks out), the JS checks to see if the field is empty, and if it is, places the watermark back in. The javascript also sets the default value of the textbox to the watermark so that you don&#8217;t have to edit the HTML at all.</p>
<p><strong>Lastly, the CSS if you are feeling fancy:</strong></p>
<pre class="brush: css; title: ; notranslate">input.watermark { color: #999; }</pre>
<p>That&#8217;s it! A simple text watermark using JQuery that doesn&#8217;t require touching HTML at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2011/10/jquery-creating-a-textbox-text-watermark/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Javascript: Creating a Text Watermark</title>
		<link>http://www.davidjrush.com/blog/2011/01/javascript-creating-a-simple-textbox-watermark-with-text/</link>
		<comments>http://www.davidjrush.com/blog/2011/01/javascript-creating-a-simple-textbox-watermark-with-text/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 01:14:08 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Javascript Tutorials]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[javascript basics]]></category>
		<category><![CDATA[watermarks]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/?p=869</guid>
		<description><![CDATA[UPDATE: Read about the JQuery version of this text watermark. This post is in response to a request to see how to create a textbox watermark using only text instead of an image. In a previous post, I explained how to use an image for a textbox watermark. Textbox watermarks are fantastic tools you can [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: Read about the <a href="http://www.davidjrush.com/blog/2011/10/jquery-creating-a-textbox-text-watermark/">JQuery version of this text watermark</a>.</p>
<p>This post is in response to a request to see how to create a textbox watermark using only text instead of an image. In a previous post, I explained how to <a href="http://www.davidjrush.com/blog/2009/06/javascript-creating-a-simple-textbox-watermark/">use an image for a textbox watermark</a>. Textbox watermarks are fantastic tools you can use to improve the usability of a website, as they give the user guidance on what to enter into the textbox. If you don&#8217;t want to use an image as my other post describes, here is how to create a simple watermark using javascript. Before we begin though, see exactly what you are making:</p>
<input style="width: 200px; margin: 10px 0px 10px 200px;" id="inputTextboxId" type="text" value="test watermark" onfocus="watermark('inputTextboxId','test watermark');" onblur="watermark('inputTextboxId','test watermark');" />
<script type="text/javascript">
function watermark(inputId,text){
	var inputBox = document.getElementById(inputId);
	if (inputBox.value.length > 0){
		if (inputBox.value == text)
			inputBox.value = '';
	}
	else
		inputBox.value = text;
}
</script></p>
<p>So either in an external Javascript file (which is called the same way as an external CSS file), or in the head of your HTML inside a &lt;script&gt; tag, include the following javascript:</p>
<p><strong>The Javascript:</strong></p>
<pre class="brush: jscript; title: ; notranslate">function watermark(inputId,text){
  var inputBox = document.getElementById(inputId);
    if (inputBox.value.length &gt; 0){
      if (inputBox.value == text)
        inputBox.value = '';
    }
    else
      inputBox.value = text;
}</pre>
<p>This javascript function checks if the textbox text isn&#8217;t empty, and then determines whether to clear the text or not. It also will put the watermark text back in if the user deletes what they entered or doesn&#8217;t enter anything. The function needs to be called in both the onblur and onfocus events of the textbox, which is explained below.</p>
<p><strong>Here is the HTML that goes with the JS:</strong></p>
<pre class="brush: xml; title: ; notranslate">&lt;input id=&quot;inputTextboxId&quot; type=&quot;text&quot; value=&quot;type here&quot; onfocus=&quot;watermark('inputTextboxId','type here');&quot; onblur=&quot;watermark('inputTextboxId','type here');&quot; /&gt;</pre>
<p>That&#8217;s all you need! And if you have any questions, don&#8217;t hesitate to ask! A question on my image watermark post lead to this post, so you never know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2011/01/javascript-creating-a-simple-textbox-watermark-with-text/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>AJAX: Loading External Content</title>
		<link>http://www.davidjrush.com/blog/2010/09/ajax-loading-external-content/</link>
		<comments>http://www.davidjrush.com/blog/2010/09/ajax-loading-external-content/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 14:00:54 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[AJAX Tutorials]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[javascript basics]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=352</guid>
		<description><![CDATA[Asynchronous Javascript and XML, is a method used to communicate with the server and load new content in a website without having to reload the page. You’ve probably seen it all over the web, and now you are going to learn how to implement it yourself! Step 1: Install JQuery: Not sure what jquery is? [...]]]></description>
			<content:encoded><![CDATA[<p>Asynchronous Javascript and XML, is a method used to communicate with  the server and load new content in a website without having to reload  the page. You’ve probably seen it all over the web, and now you are going to learn how to implement it yourself!</p>
<p><strong>Step 1: Install JQuery:</strong> Not sure what jquery is? It is basically a bunch a prebuilt javascript to make your life a whole lot easier. Go to <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js" target="_blank">http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js</a> to download the most stable version of JQuery as of this post publishing date (1.3.2) or <a href="http://jquery.com/" target="_blank">http://jquery.com/</a> for the most recent version (1.4.2).</p>
<p><strong>Step 2: Install JQuery UI For Better Animations (optional):</strong> I highly advise using some animations to spice up the interaction of your AJAX. When a user clicks something that fires your AJAX, they want to know something is happening. If it happens too quickly, they won&#8217;t know, so we&#8217;ll actually have to slow it down a bit for them. Visit <a href="http://jqueryui.com/download" target="_blank">http://jqueryui.com/download</a> to download the UI components if you&#8217;d like these better animations. I advise the &#8220;core&#8221;, the &#8220;effects core&#8221;, and the &#8220;effects blind&#8221;. You can try other effects as well such as &#8220;fold&#8221; if you want a different visual.</p>
<p><strong>Step 3: Make Two Different Pages:</strong> The concept of AJAX relies on the existence of two files. The first file is a normal webpage that will contain whatever you want to reload. The second file should use HTML, but not be contained within any html or body tags. The reason for this is your the javascript you are about to create will be loading the entire second document <em>literally within</em> the first document. You can&#8217;t have two html or body tags, so don&#8217;t use them! Having trouble understanding, well how about an example.  Say you are creating a search feature on your site. The first document is the actual search page that contains the search bar and submit button (say http://samplesite.com/search.html). The second document will hold the results of the search that was submitted on the first page and usually takes some sort of arguments, variables, query strings, or whatever else you&#8217;d like to call them (in the case of this example, probably the search terms entered in the search bar).</p>
<p><strong>The HTML for the first document (front-facing):</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;img id=&quot;loadImg&quot; src=&quot;animatedGifLocation&quot; alt=&quot;Loading...&quot; /&gt;
&lt;div id=&quot;opacityWrap&quot;&gt;&lt;div id=&quot;fillBox&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;input id=&quot;queryField&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;input id=&quot;submitQueryButton&quot; type=&quot;button&quot; value=&quot;Submit Query&quot; /&gt;
</pre>
<p><strong>The PHP for the second document (hidden from users):</strong></p>
<pre class="brush: php; title: ; notranslate">&lt;?php
  $textBoxContent = $_GET['data'];
  echo (&quot;&lt;p&gt;&quot;.$textBoxContent.&quot;&lt;/p&gt;&quot;);
?&gt;</pre>
<p><strong>Step 4: Write Some Javascript:</strong> Using some preexisting jquery functions, all we have to do is throw together a simple function that is called on the button click (or whatever else works for your particular situation). This particular javascript below uses an animated gif to indicate loading and a div two grey out the loading content box.</p>
<pre class="brush: jscript; title: ; notranslate">
$(&quot;#submitQueryButton&quot;).click(function() {
  $(&quot;#opacityWrap&quot;).animate({ opacity: .15 }, 100);
  $(&quot;#loadImg&quot;).show();
  $(&quot;#fillBox&quot;).load(&quot;secondPageURLhere?query=&quot; + $(&quot;#queryField&quot;).val(),function() {
    $(&quot;#loadImg&quot;).hide();
    $(&quot;#opacityWrap&quot;).animate({ opacity: 1.0 }, 100);
  });
});
</pre>
<p><strong>Step 5: See It In Action:</strong></p>
<div class="example" style="position: relative;">
<input id="entryField" type="text" value="" />
<input id="theButton" type="button" value="Submit Content" />
<div class="clear"></div>
<div class="ajaxWrapper">
<img id="loadImg" src="http://www.davidjrush.com/images/tutorials/expandCircle.gif" alt="Loading..." /></p>
<div id="opacityWrap">
<p id="fillBox">Dependent on whether you enter a number or a word into the text box, different content will load here. The button calls an AJAX function that loads another page. This page, dependent on the request sent by the AJAX, outputs the page&#8217;s determination of what you entered.</p>
</div>
</div>
<p><script type="text/javascript">
$("#theButton").click(function() {
  var content = $("#entryField").val();
  $("#opacityWrap").animate({opacity:0.15},100);
  $("#loadImg").show();
  $("#fillBox").load("http://www.davidjrush.com/tutorials/ajaxPage.php?data=" + escape(content), function(){
    $("#loadImg").hide();
    $("#opacityWrap").animate({opacity:1},250)
  });
});</script></p>
<style type="text/css">
div.ajaxWrapper{
margin: 20px 0 0 0;
width: 100%;
height: 75px;
background-color: white;
border: solid 1px #555555;
}
#loadImg{
display: none;
position: relative;
z-index: 1000;
top: 32px;
margin: 0px 0px -32px 305px;
}
#fillBox{
margin: 10px;
color: #555555;
text-align: center;
}
input#entryField
{
float: left;
height: 25px;
width: 200px;
font-size: 16px;
font-weight: bold;
border: solid 1px #444444;
padding-left: 5px;
}
input#theButton
{
float: right;
color: White;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
font-family: Arial, Helvetica, Sans-Serif;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
border: #1D3E66 1px solid;
border-radius: 3px;
background-color: #6284A3;
padding: 5px;
cursor: pointer;
}
input#theButton:hover{ background-color: #1D3E66; }
</style>
</div>
<p>The most useful time for this implementation of AJAX is when you want to communicate with your database to load content that your already rendered page doesn&#8217;t have. This particular example does not actually use any information from a database, but it should get the point across. So now that you know how to implement this, go and do it! Ask questions if you got &#8216;em.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2010/09/ajax-loading-external-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX: Wait Here Just A Minute</title>
		<link>http://www.davidjrush.com/blog/2010/09/ajax-wait-here-just-a-minute/</link>
		<comments>http://www.davidjrush.com/blog/2010/09/ajax-wait-here-just-a-minute/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 14:30:54 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[AJAX Tutorials]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[javascript basics]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=320</guid>
		<description><![CDATA[The best thing about Ajax is you can get brand new content on a page without having to reload it. The worst thing about ajax is people aren&#8217;t entirely used to waiting for content if they don&#8217;t see a page reload. Well, there is a quick and easy solution for that problem: animated gifs! In [...]]]></description>
			<content:encoded><![CDATA[<p>The best thing about Ajax is you can get brand new content on a page without having to reload it. The worst thing about ajax is people aren&#8217;t entirely used to waiting for content if they don&#8217;t see a page reload. Well, there is a quick and easy solution for that problem: animated gifs! In the beginnings of the web, animated gifs were used to make flashing titles that somehow everyone thought were the bee&#8217;s knees. Now that those are thankfully out of fashion, we can use animated gifs as an indicator that the website is &#8220;thinking&#8221;. The average web user won&#8217;t understand what all this AJAX stuff is doing in the background, all they need is something to tell them to wait just a little bit. Here are a few examples that I created using an awesome <a href="http://www.ajaxload.info/" target="_blank">AJAX loading gif generator</a>:</p>
<p style="text-align: center;"><img class="aligncenter" title="Ajax Loading Image Expanding Circle" src="http://www.davidjrush.com/images/tutorials/expandCircle.gif" alt="" width="32" height="32" /></p>
<p style="text-align: center;">Oooh, that&#8217;s pretty. But maybe something more simple?</p>
<p style="text-align: center;"><img class="aligncenter" title="Ajax Loading Image Small Circle" src="http://www.davidjrush.com/images/tutorials/smallCircle.gif" alt="" width="16" height="16" /></p>
<p style="text-align: center;">I like the simplicity, but it is too circly. Fix it designer!</p>
<p style="text-align: center;"><img class="aligncenter" title="Ajax Loading Image Small Bar" src="http://www.davidjrush.com/images/tutorials/smallBar.gif" alt="" width="16" height="11" /></p>
<p style="text-align: center;">And here&#8217;s a bar that could be used to indicate more of a &#8220;progress&#8221; concept instead of a &#8220;loading&#8221; concept:</p>
<p style="text-align: center;"><img class="aligncenter" style="margin-top: 0px; margin-bottom: 0px;" title="Ajax Loading Image Large Bar" src="http://www.davidjrush.com/images/tutorials/largeBar.gif" alt="" width="220" height="19" /></p>
<p style="text-align: center;">
<p>I can guarantee that you&#8217;ve seen these types of images all over the web, and now you know why. It is possible people will implement these animated gifs for other purposes, but mostly, you&#8217;ll just experience them because of AJAX. Now go have fun making your own!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidjrush.com/blog/2010/09/ajax-wait-here-just-a-minute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

