<?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>shesek &#187; Web Development</title>
	<atom:link href="http://www.shesek.info/category/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shesek.info</link>
	<description>Just another web developer blog</description>
	<lastBuildDate>Thu, 18 Aug 2011 04:39:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>&#8220;Singleton&#8221; initializer in Javascript</title>
		<link>http://www.shesek.info/web-development/singleton-initializer-in-javascript</link>
		<comments>http://www.shesek.info/web-development/singleton-initializer-in-javascript#comments</comments>
		<pubDate>Tue, 19 Jul 2011 00:07:44 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript singleton]]></category>
		<category><![CDATA[object initializer]]></category>
		<category><![CDATA[singleton design pattern]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=335</guid>
		<description><![CDATA[The nature of javascript makes it quite easy to have singleton-like behavior without actually using the singleton design pattern &#8211; simply define an object with some properties and use that. No need to do anything more than that, really &#8211; there&#8217;s no reason to create a prototyped function, create an instance and keep a reference [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/singleton-initializer-in-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursive Backbone.Model&#8217;s toJSON()</title>
		<link>http://www.shesek.info/web-development/recursive-backbone-models-tojson</link>
		<comments>http://www.shesek.info/web-development/recursive-backbone-models-tojson#comments</comments>
		<pubDate>Mon, 18 Jul 2011 23:47:54 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Backbone.js]]></category>
		<category><![CDATA[Backbone.Model]]></category>
		<category><![CDATA[Backbone.Model.toJSON]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[toJSON]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=331</guid>
		<description><![CDATA[If you&#8217;re using collections and models as attributes for other models, calling toJSON() on Backbone.Model objects isn&#8217;t very useful as it returns the models and collections as-is. I&#8217;ve opened an issue requesting to make it recursive, but it seems like its not going to be added. If anyone still wants this functionality, you can use [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/recursive-backbone-models-tojson/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit forms when CTRL+Enter is pressed in a textarea using jQuery</title>
		<link>http://www.shesek.info/web-development/submit-forms-when-ctrlenter-is-pressed-in-a-textarea-using-jquery</link>
		<comments>http://www.shesek.info/web-development/submit-forms-when-ctrlenter-is-pressed-in-a-textarea-using-jquery#comments</comments>
		<pubDate>Wed, 22 Sep 2010 13:51:13 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ctrl-enter]]></category>
		<category><![CDATA[submit forms]]></category>
		<category><![CDATA[textarea]]></category>

		<guid isPermaLink="false">http://www.codenition.com/?p=117</guid>
		<description><![CDATA[Many applications and websites support submitting a form when CTRL+Enter is pressed in a textarea, in the same way its submitted when enter is pressed on single-line input box. This is how we added that functionality to our websites using jQuery: Have fun.]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/submit-forms-when-ctrlenter-is-pressed-in-a-textarea-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery :focus selector expression</title>
		<link>http://www.shesek.info/web-development/jquery-focus-selector-expression</link>
		<comments>http://www.shesek.info/web-development/jquery-focus-selector-expression#comments</comments>
		<pubDate>Wed, 22 Sep 2010 03:12:01 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[focus expression]]></category>
		<category><![CDATA[focus selector]]></category>
		<category><![CDATA[jquery selector]]></category>
		<category><![CDATA[selector]]></category>

		<guid isPermaLink="false">http://www.codenition.com/?p=100</guid>
		<description><![CDATA[Just a quick code snippet I wrote for someone on IRC: (should work, but wasn&#8217;t really tested) You can use it like that:]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/jquery-focus-selector-expression/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery-UI multicomplete widget (based on autocomplete)</title>
		<link>http://www.shesek.info/web-development/jquery-ui-multicomplete-widget-based-on-autocomplete</link>
		<comments>http://www.shesek.info/web-development/jquery-ui-multicomplete-widget-based-on-autocomplete#comments</comments>
		<pubDate>Sun, 11 Jul 2010 03:39:07 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Autocomplete]]></category>
		<category><![CDATA[jQuery UI]]></category>
		<category><![CDATA[jquery widget]]></category>
		<category><![CDATA[multicomplete]]></category>
		<category><![CDATA[Multiple Autocomplete]]></category>

		<guid isPermaLink="false">http://www.codenition.com/?p=35</guid>
		<description><![CDATA[After writing my $.fn.autocomplete function to allow using jQuery&#8217;s UI autocomplete with multiple selections, I&#8217;ve rewritten it as a widget that extends the autocomplete widget. Basically, it works the exact same as autocomplete &#8211; other than allowing to select multiple values separated with a comma. A few things were improved/changed in that version: All options [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/jquery-ui-multicomplete-widget-based-on-autocomplete/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>jQuery-UI autocomplete with multiple selections</title>
		<link>http://www.shesek.info/web-development/jquery-ui-autocomplete-with-multiple-selections</link>
		<comments>http://www.shesek.info/web-development/jquery-ui-autocomplete-with-multiple-selections#comments</comments>
		<pubDate>Sat, 10 Jul 2010 21:32:09 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Autocomplete]]></category>
		<category><![CDATA[jQuery UI]]></category>
		<category><![CDATA[Multiple Autocomplete]]></category>

		<guid isPermaLink="false">http://www.codenition.com/?p=8</guid>
		<description><![CDATA[For one of our projects we needed to have an auto-complete input field with multiple selections, separated with a comma. I found quite a few plugins that can do that, but preferred to use the autocomplete feature that&#8217;s built-in to jQuery UI. To get it working, all that&#8217;s needed is modifying some events/callbacks (select, focus, [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/jquery-ui-autocomplete-with-multiple-selections/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer &#8220;Unspecified Error&#8221; with jQuery and getBoundingClientRect</title>
		<link>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect-2</link>
		<comments>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect-2#comments</comments>
		<pubDate>Fri, 25 Jun 2010 20:58:44 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[getBoundingClientRect]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[offset]]></category>
		<category><![CDATA[offsetParent]]></category>
		<category><![CDATA[unspecified error]]></category>

		<guid isPermaLink="false">http://www.codenition.com/?p=6</guid>
		<description><![CDATA[I&#8217;ve been getting &#8220;Unspecified Error&#8221; errors from Internet Explorer with some jQuery code. I traced the cause to jQuery&#8217;s &#8220;getBoundingClientRect&#8221; which comes from a call to $(&#8230;).offset({top: X, left: T}). After looking around in some forums/blogs, it seems the error is coming from some handling of internet explorer with offsetParent in some specific cases. to [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to hide Facebook&#8217;s Like Box social plugin border</title>
		<link>http://www.shesek.info/web-development/how-to-hide-facebooks-like-box-social-plugin-border</link>
		<comments>http://www.shesek.info/web-development/how-to-hide-facebooks-like-box-social-plugin-border#comments</comments>
		<pubDate>Wed, 26 May 2010 22:32:49 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[hide border]]></category>
		<category><![CDATA[like box]]></category>
		<category><![CDATA[social plugin]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=269</guid>
		<description><![CDATA[I was trying to make my own rounded-colored-cooler-looking border for the Like Box social plugin, and Facebook&#8217;s default border was getting in the way. That&#8217;s what I eventually used: So &#8211; what does it do? We have the #likebox element that sets the background image (that has rounded borders) and some padding, so the content [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/how-to-hide-facebooks-like-box-social-plugin-border/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Internet Explorer &#8220;Unspecified Error&#8221; with jQuery and getBoundingClientRect</title>
		<link>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect</link>
		<comments>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect#comments</comments>
		<pubDate>Sat, 08 May 2010 18:15:14 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[getBoundingClientRect]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[offset]]></category>
		<category><![CDATA[offsetParent]]></category>
		<category><![CDATA[unspecified error]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=255</guid>
		<description><![CDATA[I&#8217;ve been getting &#8220;Unspecified Error&#8221; errors from Internet Explorer with some jQuery code. I traced the cause to jQuery&#8217;s &#8220;getBoundingClientRect&#8221; which comes from a call to $(&#8230;).offset({top: X, left: T}). After looking around in some forums/blogs, it seems the error is coming from some handling of internet explorer with offsetParent in some specific cases. to [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery shake() function</title>
		<link>http://www.shesek.info/web-development/jquery-shake-function</link>
		<comments>http://www.shesek.info/web-development/jquery-shake-function#comments</comments>
		<pubDate>Tue, 29 Dec 2009 09:46:03 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[shake]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=165</guid>
		<description><![CDATA[I needed a quick function for jQuery to shake an absolute or static positioned (can be easily modified to support other positions too, but it doesn&#8217;t at the moment) element up&#038;down that isn&#8217;t depended on jQuery UI (I&#8217;m using to shake simplemodal&#8216;s container). This is what I came up with that: (function($){ $.fn.shake=function(opt){ opt=$.extend({times: 8,delay: [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/jquery-shake-function/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

