<?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>Dan Rigby &#187; Javascript</title>
	<atom:link href="http://danrigby.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://danrigby.com</link>
	<description>Random Thoughts About Life, Technology, and Software</description>
	<lastBuildDate>Thu, 01 Jul 2010 16:49:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Retroactive Browser Compatibility</title>
		<link>http://danrigby.com/2009/04/19/retroactive-browser-compatibility/</link>
		<comments>http://danrigby.com/2009/04/19/retroactive-browser-compatibility/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 22:45:03 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://danrigby.com/2009/04/19/retroactive-browser-compatibility/</guid>
		<description><![CDATA[When working on an existing web application you may be placed in a situation where you need to support new browsers, or just other browsers that your app wasn’t originally coded for or tested in. In my case, this took the form of a web app developed exclusively for Internet Explorer that now needed to [...]]]></description>
			<content:encoded><![CDATA[<p>When working on an existing web application you may be placed in a situation where you need to support new browsers, or just other browsers that your app wasn’t originally coded for or tested in. In my case, this took the form of a web app developed exclusively for Internet Explorer that now needed to support other browsers. As I went through and corrected many of the browser incompatibilities, I noticed a few common ones, and wanted to mention them in case it’s beneficial to others in the same situation.</p>
<p>I should mention up front that jQuery was an indispensible tool when I was working on this project as in many cases I was able to replace the offending JavaScript with a jQuery equivalent that was cross browser compatible. If you’re a web developer and are not familiar with <a href="http://www.jquery.com" target="_blank">jQuery</a>, you probably should be. <img src='http://danrigby.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>So a couple of things to look out for… I wanted to list the easiest ones to spot first as you can do a text search and usually find all of them:</p>
<ol>
<li><strong>CSS Expressions:</strong>
<ul>
<li>Were implemented in IE5 and allow you to assign a JavaScript expression to a CSS property.</li>
<li>Were deprecated in IE8 standards mode, see <a href="http://blogs.msdn.com/ie/archive/2008/10/16/ending-expressions.aspx" target="_blank">http://blogs.msdn.com/ie/archive/2008/10/16/ending-expressions.aspx</a> for details.</li>
<li>IE specific.</li>
<li>Search for: “expression(”</li>
<li>Replace with JavaScript that dynamically modifies the CSS properties in response to specific browser events (onresize, etc).
<ul>
<li>In many cases this can be more performant than CSS expressions because you can choose to bind to specific events (CSS expressions are reevaluated *every* time a JavaScript event with at least 1 listener fires.</li>
</ul>
</li>
</ul>
</li>
<li><strong>outerHTML:</strong>
<ul>
<li>“Get or set the HTML of the entire node x, including the outermost tag (element x itself).”</li>
<li>Example: x.outerHTML = &#8220;Let&#8217;s &lt;u&gt;change&lt;/u&gt; it!&#8221;</li>
<li>IE specific.</li>
<li>Search for: “outerHTML”</li>
<li>Replace with innerHTML or W3C DOM methods. innerHTML is in theory faster, but IE and Konquerer have some issues when innerHTML is used with tables. Replacing outerHTML with calls to innerHTML will also require some changes to the logic using outerHTML as innerHTML is slightly different in behavior.</li>
</ul>
</li>
<li><strong>Visual Filters:</strong>
<ul>
<li>Used commonly to create gradients without using images.</li>
<li>More information on Visual Filters: <a href="http://msdn.microsoft.com/en-us/library/ms532853.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/ms532853.aspx</a></li>
<li>IE specific.</li>
<li>Example: &lt;ELEMENT STYLE=&#8221;filter:progid:DXImageTransform.Microsoft.Gradient(sProperties)&#8221; &#8230; &gt;</li>
<li>Search for: “DXImageTransform”</li>
<li>Replace with… Unfortunately there really isn’t an equivalent for this. Some of the visual filters can be replicated using standard CSS properties, but not all of them. As convenient as the visual filters are, they will only work in internet explorer at the moment.</li>
</ul>
</li>
<li><strong>Window.Event:</strong>
<ul>
<li>Used to access JavaScript event information in IE.</li>
<li>IE Specific.</li>
<li>Search for: “window.event”</li>
<li>This item could have several pages written about it, but the short story is that IE handles passing JavaScript event information differently than other browsers. You will need to code your JavaScript to accommodate this difference. jQuery can again be useful here as it can abstract a lot of this problem away from you. I recommend reading the section on events here: <a href="http://www.reloco.com.ar/mozilla/compat.html" target="_blank">http://www.reloco.com.ar/mozilla/compat.html</a> as it will give you an overview of the problem and how to address it.</li>
</ul>
</li>
<li><strong>Custom Attributes:</strong>
<ul>
<li>Used to defined custom element attributes.</li>
<li>Getting or setting custom attributes without using DOM methods is not cross browser compatible.
<ul>
<li>Example: element.MyProp = “This doesn’t work in all browsers.”</li>
</ul>
</li>
<li>Search for… No good search string for these. You just need to keep your eyes out for JavaScript that makes calls to custom attributes without using DOM methods (or jQuery).</li>
<li>Replace with: calls to .getAttribute(“MyProp”) or setAttribute(“MyProp”) or if using jQuery, element.attr() as shown here: <a href="http://docs.jquery.com/Attributes/attr" target="_blank">http://docs.jquery.com/Attributes/attr</a>.</li>
</ul>
</li>
</ol>
<p>This list is by no means exhaustive, but I wanted to point out many of the common issues I have come across. Your mileage may vary. I recommend checking out the references listed below for a lot more good compatibility information. I’ve tried to check all of my facts, but if you notice anything that seems off, let me know so I can fix it!</p>
<p><strong>References:</strong></p>
<ul>
<li><a href="http://www.reloco.com.ar/mozilla/compat.html" target="_blank">http://www.reloco.com.ar/mozilla/compat.html</a> – “Making your web browser compatible with Firefox”
<ul>
<li>A good overview of many of the common browser compatibility problems faced when making an web app written for IE work in Firefox</li>
</ul>
</li>
<li><a href="http://www.quirksmode.org/compatibility.html" target="_blank">http://www.quirksmode.org/compatibility.html</a> – “Compatibility Master Table”
<ul>
<li>The holy grail of browser compatibility information. Seriously… Want to know if a browser fully supports CSS2, CSS3, DOM, etc? It’s here.</li>
</ul>
</li>
<li><a title="http://reference.sitepoint.com/" href="http://reference.sitepoint.com/" target="_blank">http://reference.sitepoint.com/</a> – “CSS/HTML/JavaScript Reference”
<ul>
<li>Reference site for CSS, HTML, and JavaScript information. Its got a clean layout and additionally contains browser compatibility information for each of the items.</li>
</ul>
</li>
<li><a href="http://blogs.msdn.com/ie/archive/2009/03/12/site-compatibility-and-ie8.aspx" target="_blank">http://blogs.msdn.com/ie/archive/2009/03/12/site-compatibility-and-ie8.aspx</a> – “Site Compatibility and IE8”
<ul>
<li>A page detailing potential issues and fixes for making your pages compatible with IE8 in Standards Mode. This is actually a good reference for potential cross browser problems as most of the items listed are cross browser compatibility issues as well.</li>
</ul>
</li>
</ul>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Retroactive%20Browser%20Compatibility&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;bodytext=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;notes=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;t=Retroactive%20Browser%20Compatibility" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Retroactive%20Browser%20Compatibility%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;annotation=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/04/19/retroactive-browser-compatibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official jQuery 1.3.0, 1.3.1 Visual Studio Intellisense Files</title>
		<link>http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/</link>
		<comments>http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 13:42:29 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/</guid>
		<description><![CDATA[It looks like this weekend while I was at the South Florida Code Camp the jQuery team has posted the official jQuery 1.3.1 Visual Studio intellisense file. You can get it from the jQuery downloads page, or more directly from the jQuery Google Code download page. The official 1.3.0 documentation was posted this weekend as [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like this weekend while I was at the <a href="http://codecamp09.fladotnet.com/" target="_blank">South Florida Code Camp</a> the jQuery team has posted the official jQuery 1.3.1 Visual Studio intellisense file. You can get it from the <a href="http://docs.jquery.com/Downloading_jQuery#Current_Release" target="_blank">jQuery downloads page</a>, or more directly from the <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.1-vsdoc.js" target="_blank">jQuery Google Code download page</a>.</p>
<p>The official 1.3.0 documentation was posted this weekend as well and is also available from the downloads link above, or this <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3-vsdoc.js" target="_blank">Google Code download page</a>.</p>
<p>Keep your eyes peeled for a jQuery 1.3.2 release anytime in the next few days as John Resig has mentioned there is still one last 1.3 regression they are working on fixing. </p>
<p>For those interested, the regression has to do with the $(document).ready() function waiting until images are fully loaded in Internet Explorer 6 &amp; 7. The jQuery bug ticket ID is <a href="http://dev.jquery.com/ticket/3988#preview" target="_blank">#3988</a> and here’s a <a href="http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready" target="_blank">Stack Overflow question</a> in which John Resig talks about the issue in some detail.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;bodytext=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;notes=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;t=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;annotation=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.3.1 Released</title>
		<link>http://danrigby.com/2009/01/22/jquery-131-released/</link>
		<comments>http://danrigby.com/2009/01/22/jquery-131-released/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 13:42:51 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=166</guid>
		<description><![CDATA[The jQuery team has just released jQuery 1.3.1. This is mainly a bugfix release. You can view the fixed bugs on the jQuery bug tracker. You can download this release by visiting the jQuery Downloads page, or more directly, the 1.3.1 Release Download page.  The blog post regarding this release makes a few important points [...]]]></description>
			<content:encoded><![CDATA[<p>The jQuery team has just <a href="http://blog.jquery.com/2009/01/21/jquery-131-released/" target="_blank">released jQuery 1.3.1</a>. This is mainly a bugfix release. You can view the <a href="http://dev.jquery.com/report/30" target="_blank">fixed bugs</a> on the <a href="http://dev.jquery.com/report/" target="_blank">jQuery bug tracker</a>. You can download this release by visiting the <a href="http://docs.jquery.com/Downloading_jQuery" target="_blank">jQuery Downloads page</a>, or more directly, the <a href="http://docs.jquery.com/Release:jQuery_1.3.1" target="_blank">1.3.1 Release Download page</a>. </p>
<p>The <a href="http://blog.jquery.com/2009/01/21/jquery-131-released/" target="_blank">blog post</a> regarding this release makes a few important points to be aware of:</p>
<ul>
<li><strong>jQuery support for Safari 2 is being phased out.</strong> 
<ul>
<li>Safari 2 has been superceded by Safari 3 and no longer has an <a href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=2" target="_blank">appreciable market share</a>.</li>
</ul>
</li>
<li><strong>Packed versions of jQuery will no longer be available.</strong>
<ul>
<li>Packed scripts make debugging more difficult, cause platform incompatibilities (e.g. Adobe Air, Caja), and can actually <a href="http://ejohn.org/blog/library-loading-speed/" target="_blank">increase loading</a> times in many cases versus a plain minified script.</li>
</ul>
</li>
</ul>
<p> </p>
<p>This update should not contain any breaking changes. Happy jQuerying!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=jQuery%201.3.1%20Released&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released&amp;bodytext=The%20jQuery%20team%20has%20just%20released%20jQuery%201.3.1.%20This%20is%20mainly%20a%20bugfix%20release.%20You%20can%20view%20the%20fixed%20bugs%20on%20the%20jQuery%20bug%20tracker.%20You%20can%20download%20this%20release%20by%20visiting%20the%20jQuery%20Downloads%20page%2C%20or%20more%20directly%2C%20the%201.3.1%20Release%20Download%20" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released&amp;notes=The%20jQuery%20team%20has%20just%20released%20jQuery%201.3.1.%20This%20is%20mainly%20a%20bugfix%20release.%20You%20can%20view%20the%20fixed%20bugs%20on%20the%20jQuery%20bug%20tracker.%20You%20can%20download%20this%20release%20by%20visiting%20the%20jQuery%20Downloads%20page%2C%20or%20more%20directly%2C%20the%201.3.1%20Release%20Download%20" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=The%20jQuery%20team%20has%20just%20released%20jQuery%201.3.1.%20This%20is%20mainly%20a%20bugfix%20release.%20You%20can%20view%20the%20fixed%20bugs%20on%20the%20jQuery%20bug%20tracker.%20You%20can%20download%20this%20release%20by%20visiting%20the%20jQuery%20Downloads%20page%2C%20or%20more%20directly%2C%20the%201.3.1%20Release%20Download%20" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;t=jQuery%201.3.1%20Released" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=jQuery%201.3.1%20Released%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released&amp;annotation=The%20jQuery%20team%20has%20just%20released%20jQuery%201.3.1.%20This%20is%20mainly%20a%20bugfix%20release.%20You%20can%20view%20the%20fixed%20bugs%20on%20the%20jQuery%20bug%20tracker.%20You%20can%20download%20this%20release%20by%20visiting%20the%20jQuery%20Downloads%20page%2C%20or%20more%20directly%2C%20the%201.3.1%20Release%20Download%20" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fjquery-131-released%2F&amp;title=jQuery%201.3.1%20Released" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/22/jquery-131-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unofficial JQuery 1.3 Visual Studio Intellisense File</title>
		<link>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/</link>
		<comments>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:02:09 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=155</guid>
		<description><![CDATA[In lieu of the official Visual Studio 2008 Intellisense file for jQuery, the jQuery intellisense file generator at http://www.infobasis.com/sandpit/jQuery-Intellisense/ has been updated to support jQuery 1.3.0 (See this post for more details). The will allow you to get proper jQuery 1.3 intellisense in your applications until the official version is released. The above linked script generator uses [...]]]></description>
			<content:encoded><![CDATA[<p>In lieu of the official Visual Studio 2008 Intellisense file for jQuery, the jQuery intellisense file generator at <a href="http://www.infobasis.com/sandpit/jQuery-Intellisense/" target="_blank">http://www.infobasis.com/sandpit/jQuery-Intellisense/</a> has been updated to support jQuery 1.3.0 (See <a href="http://blogs.ipona.com/james/archive/2009/01/14/jquery-1.3-and-visual-studio-2008-intellisense.aspx" target="_blank">this post</a> for more details). The will allow you to get proper jQuery 1.3 intellisense in your applications until the official version is released. The above linked script generator uses the official jQuery API documentation to build the intellisense file, so you don&#8217;t need to worry about it being inaccurate or imcomplete just because it&#8217;s not the &#8220;official&#8221; version.</p>
<p>Happy jQuerying!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;bodytext=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;notes=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;t=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;annotation=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.3.0 Released!</title>
		<link>http://danrigby.com/2009/01/14/jquery-130-released/</link>
		<comments>http://danrigby.com/2009/01/14/jquery-130-released/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 14:50:33 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=143</guid>
		<description><![CDATA[A quick glance at the jQuery website today revealed that jQuery 1.3.0 has been released and is available for download! This release coincides with jQuery&#8217;s third birthday. You can find the release notes for jQuery 1.3 here. At this moment there is no link for an updated Visual Studio intellisense file, but using the old one should get [...]]]></description>
			<content:encoded><![CDATA[<p>A quick glance at the <a href="http://jquery.com/" target="_blank">jQuery website</a> today revealed that <a href="http://blog.jquery.com/2009/01/14/jquery-13-and-the-jquery-foundation/" target="_blank">jQuery 1.3.0 has been released</a> and is available for <a href="http://docs.jquery.com/Downloading_jQuery" target="_blank">download!</a> This release coincides with jQuery&#8217;s third birthday. You can find the release notes for jQuery 1.3 <a href="http://docs.jquery.com/Release:jQuery_1.3" target="_blank">here</a>. At this moment there is no link for an updated Visual Studio intellisense file, but using the old one should get you by for now.</p>
<p>I blogged <a href="/2009/01/02/jquery-»-help-test-jquery-13-beta-1/">previously</a> about this release and the performance enhancements it&#8217;s expected to bring, but the release notes spell out in detail the performance differences of the <a href="http://docs.jquery.com/Release:jQuery_1.3#Performance" target="_blank">new selector engine</a>.</p>
<p>Along with this release, jQuery has created a new API Browser at <a href="http://api.jquery.com/" target="_blank">http://api.jquery.com</a> that is available in addition to the existing jQuery docs site. Whats nice about the new api browser is it can be downloaded and installed as an Adobe Air application.</p>
<p>Happy birthday jQuery!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=jQuery%201.3.0%20Released%21&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21&amp;bodytext=A%20quick%20glance%20at%20the%20jQuery%20website%20today%20revealed%20that%20jQuery%201.3.0%20has%20been%20released%C2%A0and%20is%20available%20for%20download%21%C2%A0This%20release%20coincides%20with%20jQuery%27s%20third%20birthday.%20You%20can%20find%20the%20release%20notes%20for%20jQuery%201.3%20here.%C2%A0At%20this%20moment%20there%20is" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21&amp;notes=A%20quick%20glance%20at%20the%20jQuery%20website%20today%20revealed%20that%20jQuery%201.3.0%20has%20been%20released%C2%A0and%20is%20available%20for%20download%21%C2%A0This%20release%20coincides%20with%20jQuery%27s%20third%20birthday.%20You%20can%20find%20the%20release%20notes%20for%20jQuery%201.3%20here.%C2%A0At%20this%20moment%20there%20is" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=A%20quick%20glance%20at%20the%20jQuery%20website%20today%20revealed%20that%20jQuery%201.3.0%20has%20been%20released%C2%A0and%20is%20available%20for%20download%21%C2%A0This%20release%20coincides%20with%20jQuery%27s%20third%20birthday.%20You%20can%20find%20the%20release%20notes%20for%20jQuery%201.3%20here.%C2%A0At%20this%20moment%20there%20is" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;t=jQuery%201.3.0%20Released%21" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=jQuery%201.3.0%20Released%21%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21&amp;annotation=A%20quick%20glance%20at%20the%20jQuery%20website%20today%20revealed%20that%20jQuery%201.3.0%20has%20been%20released%C2%A0and%20is%20available%20for%20download%21%C2%A0This%20release%20coincides%20with%20jQuery%27s%20third%20birthday.%20You%20can%20find%20the%20release%20notes%20for%20jQuery%201.3%20here.%C2%A0At%20this%20moment%20there%20is" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F14%2Fjquery-130-released%2F&amp;title=jQuery%201.3.0%20Released%21" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/14/jquery-130-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery:  » Help Test jQuery 1.3 Beta 1</title>
		<link>http://danrigby.com/2009/01/02/jquery-%c2%bb-help-test-jquery-13-beta-1/</link>
		<comments>http://danrigby.com/2009/01/02/jquery-%c2%bb-help-test-jquery-13-beta-1/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 19:50:25 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=90</guid>
		<description><![CDATA[If you&#8217;re like me and feel like writing Javascript without JQuery to be kind of like coding with one hand, you&#8217;ll be pleased to know that the JQuery team has released a beta version of JQuery 1.3 for people to test and give feedback on.  John Resig mentioned in a podcast with Scott Hanselman a [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me and feel like writing Javascript without JQuery to be kind of like coding with one hand, you&#8217;ll be pleased to know that the <a href="http://blog.jquery.com/2008/12/22/help-test-jquery-13-beta-1/" target="_blank">JQuery team has released a beta version of JQuery 1.3</a> for people to test and give feedback on. </p>
<p>John Resig mentioned in a podcast with Scott Hanselman a few months back that one of the primary goals of the 1.3 release was to increase performance and a quick glance at the important changes listd in this release, specifically rewrites of big parts JQuery like the selector engine, seem to allude to this.</p>
<p>A quick run of the Javascript library benchmark app at <a href="http://experiment.bcse.info/slickspeed/">http://experiment.bcse.info/slickspeed/</a> on my machine using Chrome shows a *significant* performance increase in JQuery 1.3b1 versus 1.2.6 (final time of 13ms compared to 26ms, so about a 100% speedup overall).</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201&amp;bodytext=If%20you%27re%20like%20me%20and%20feel%20like%20writing%20Javascript%20without%20JQuery%20to%20be%20kind%20of%20like%20coding%20with%20one%20hand%2C%20you%27ll%20be%20pleased%20to%20know%20that%20the%20JQuery%20team%20has%20released%20a%20beta%20version%20of%20JQuery%201.3%20for%20people%20to%20test%20and%20give%20feedback%20on.%C2%A0%0D%0A%0D%0AJohn%20Res" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201&amp;notes=If%20you%27re%20like%20me%20and%20feel%20like%20writing%20Javascript%20without%20JQuery%20to%20be%20kind%20of%20like%20coding%20with%20one%20hand%2C%20you%27ll%20be%20pleased%20to%20know%20that%20the%20JQuery%20team%20has%20released%20a%20beta%20version%20of%20JQuery%201.3%20for%20people%20to%20test%20and%20give%20feedback%20on.%C2%A0%0D%0A%0D%0AJohn%20Res" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=If%20you%27re%20like%20me%20and%20feel%20like%20writing%20Javascript%20without%20JQuery%20to%20be%20kind%20of%20like%20coding%20with%20one%20hand%2C%20you%27ll%20be%20pleased%20to%20know%20that%20the%20JQuery%20team%20has%20released%20a%20beta%20version%20of%20JQuery%201.3%20for%20people%20to%20test%20and%20give%20feedback%20on.%C2%A0%0D%0A%0D%0AJohn%20Res" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;t=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201&amp;annotation=If%20you%27re%20like%20me%20and%20feel%20like%20writing%20Javascript%20without%20JQuery%20to%20be%20kind%20of%20like%20coding%20with%20one%20hand%2C%20you%27ll%20be%20pleased%20to%20know%20that%20the%20JQuery%20team%20has%20released%20a%20beta%20version%20of%20JQuery%201.3%20for%20people%20to%20test%20and%20give%20feedback%20on.%C2%A0%0D%0A%0D%0AJohn%20Res" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F02%2Fjquery-%25c2%25bb-help-test-jquery-13-beta-1%2F&amp;title=jQuery%3A%20%20%C2%BB%20Help%20Test%20jQuery%201.3%20Beta%201" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/02/jquery-%c2%bb-help-test-jquery-13-beta-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
