<?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>alex barberis &#187; jQuery</title>
	<atom:link href="http://alexbarberis.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexbarberis.com</link>
	<description>my personal "blog"</description>
	<lastBuildDate>Sun, 29 Aug 2010 21:11:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Mobile</title>
		<link>http://alexbarberis.com/2010/08/14/jquery-mobile/</link>
		<comments>http://alexbarberis.com/2010/08/14/jquery-mobile/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 15:37:43 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://alexbarberis.com/?p=530</guid>
		<description><![CDATA[Saw this yesterday and I was pretty amped about it. I always thought @DavidKaneda&#8217;s jQTouch was cool but jQuery Mobile will have the effort of the enntire community behind it.

	
		Tweet
	
	]]></description>
			<content:encoded><![CDATA[<p>Saw <a href="http://jquerymobile.com/">this</a> yesterday and I was pretty amped about it. I always thought @DavidKaneda&#8217;s <a href="http://www.jqtouch.com/">jQTouch</a> was cool but jQuery Mobile will have the effort of the enntire community behind it.</p>

	<div style="">
		<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-text="jQuery Mobile" data-url="http://alexbarberis.com/2010/08/14/jquery-mobile/"  data-via="plexi">Tweet</a>
	</div>
	<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2010/08/14/jquery-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET 1.1 Web Services and jQuery</title>
		<link>http://alexbarberis.com/2010/03/05/asp-net-1-1-web-services-and-jquery/</link>
		<comments>http://alexbarberis.com/2010/03/05/asp-net-1-1-web-services-and-jquery/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 15:06:15 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://alexbarberis.com/?p=493</guid>
		<description><![CDATA[While working on a project today I figured out how to use jQuery&#8217;s $.ajax functionality to consume an ASP.NET 1.1 web service. I was always under the impression that this wasn&#8217;t possible. However, this is quite easy. By default an ASP.NET 1.1 web service will accept an HTTP GET, HTTP POST, or HTTP SOAP. Calling [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a project today I figured out how to use jQuery&#8217;s $.ajax functionality to consume an ASP.NET 1.1 web service. I was always under the impression that this wasn&#8217;t possible. However, this is quite easy. By default an ASP.NET 1.1 web service will accept an HTTP GET, HTTP POST, or HTTP SOAP. Calling a 1.1 web service is as easy as:<br />
[javascript]<br />
$.ajax({<br />
	type: &#8220;POST&#8221;,<br />
	url: &#8216;PathToYourService.asmx/FunctionName&#8217;,<br />
	data: &#8216;foo1=value1&amp;foo2=value&amp;foo3=value&#8217;,<br />
	dataType: &#8220;xml&#8221;,<br />
	success: function(xml) {<br />
		//do something with your data<br />
	}<br />
});<br />
[/javascript]</p>
<p>Replace the data variables with your service parameters and you should be all set. jQuery makes parsing all that XML really easy as well.</p>

	<div style="">
		<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-text="ASP.NET 1.1 Web Services and jQuery" data-url="http://alexbarberis.com/2010/03/05/asp-net-1-1-web-services-and-jquery/"  data-via="plexi">Tweet</a>
	</div>
	<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2010/03/05/asp-net-1-1-web-services-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>infoBar 1.0</title>
		<link>http://alexbarberis.com/2009/03/11/infobar-10/</link>
		<comments>http://alexbarberis.com/2009/03/11/infobar-10/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 03:54:37 +0000</pubDate>
		<dc:creator>Alex Barberis</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://alexbarberis.com/?p=206</guid>
		<description><![CDATA[I created a simple plugin for jQuery that displays an information bar that looks similar to what most browsers are doing to show messages to a user today. I needed to create something that showed my custom messages when necessary. Total development time on top of jQuery was about 15 minutes. This is the best [...]]]></description>
			<content:encoded><![CDATA[<p>I created a simple plugin for jQuery that displays an information bar that looks similar to what most browsers are doing to show messages to a user today. I needed to create something that showed my custom messages when necessary. Total development time on top of jQuery was about 15 minutes. This is the best framework ever!</p>
<p><img src="http://alexbarberis.com/wp-content/uploads/2009/03/infobar.gif" alt="" width="399" height="85" /></p>
<p style="text-align: left;">infoBar is easy to use. Here is what you do:</p>
<p style="text-align: left;"><span style="font-family: 'Courier New'; line-height: 18px; white-space: pre;">showInfoBar(&#8216;This is a sample information bar!&#8217;);</span></p>
<p>Once the infoBar shows and the user clicks the close link on the right the <code>hideInfoBar();</code> function is called. This is automatically wired up. All you have to do is display the bar and everything else just works.</p>
<p>infoBar also resizes when the user resizes the browser and always stays on the top of the browser when the user scrolls the page.</p>
<p>I really dislike doing CSS so its all customizable inside the script. You just need to include it and you&#8217;re all set. Feel free to modify my script. Hopefully the next version gets support for an icon on the left and I will fancy up the close link.</p>
<p>Confirmed to work in IE7, Chrome, and Safari.</p>
<p><a href="http://alexbarberis.com/infobar" target="_blank">Demo of infoBar</a></p>
<p><a title="infoBar" href="http://plugins.jquery.com/project/infoBar" class="broken_link"  target="_blank">infoBar at the jQuery Plugin Repository (download available)</a></p>
<p>Enjoy!</p>
<p>Edit:</p>
<p><a href="http://www.blakepell.com" target="_self">Blake Pell</a> took infoBar.js and wrapped it to create an ASP.NET control that can be used on your site. Go <a href="http://www.blakepell.com/Main/InfoBar/Default.aspx" target="_self">check it out</a>.</p>

	<div style="">
		<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-text="infoBar 1.0" data-url="http://alexbarberis.com/2009/03/11/infobar-10/"  data-via="plexi">Tweet</a>
	</div>
	<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>]]></content:encoded>
			<wfw:commentRss>http://alexbarberis.com/2009/03/11/infobar-10/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
