<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Zero</title>
	<link>http://11-bridges.com/techblog</link>
	<description>For Every Failure, There is an Equal and Opposite Success</description>
	<lastBuildDate>Thu, 21 Jul 2011 20:19:39 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>This.Disabled = True Doesn&#8217;t Work in Chrome</title>
		<description><![CDATA[A common way to prevent duplicate forms submissions caused by the user clicking the submit button twice is to do this: &#60;input type=&#34;submit&#34; value=&#34;Submit&#34; onclick=&#34;this.disabled=true;&#34;&#62; This doesn&#8217;t work in Chrome. When the button is disabled, all events associated are halted including the form submission. Instead we had to do this: jQuery.fn.preventDoubleSubmit = function &#40;&#41; &#123; [...]]]></description>
		<link>http://11-bridges.com/techblog/fail/this-disabled-true-doesnt-work-in-chrome/</link>
			</item>
	<item>
		<title>Disallow Bad Robot User Agent in .htaccess</title>
		<description><![CDATA[Thanks Guys: http://perishablepress.com/press/2010/08/09/2010-user-agent-blacklist/]]></description>
		<link>http://11-bridges.com/techblog/blipverts/disallow-bad-robot-user-agent-in-htaccess/</link>
			</item>
	<item>
		<title>Codeigniter &#8211; CI Log_Path Problem</title>
		<description><![CDATA[So, even though I don&#8217;t understand why this is happening, Codeigniter is unable to capture the path to the system/logs folder. Here is a way to set it manually in your config.php file: $config&#91;'log_path'&#93; = getcwd&#40;&#41; . '/' . SYSDIR . '/logs/';]]></description>
		<link>http://11-bridges.com/techblog/blipverts/codeigniter-ci-log_path-problem/</link>
			</item>
	<item>
		<title>Set Default Timezone in PHP 5.3</title>
		<description><![CDATA[PHP 5.3 throws an error if there is no default timezone set (the server timezone is unacceptable). You can do this from code if can&#8217;t get to your php.ini file: date_default_timezone_set&#40;'America/Los_Angeles'&#41;;]]></description>
		<link>http://11-bridges.com/techblog/blipverts/set-default-timezone-in-php-5-3/</link>
			</item>
	<item>
		<title>Thematic HTML5 child theme template</title>
		<description><![CDATA[Here's an easy way to get started using HTML5 in your thematic child theme.]]></description>
		<link>http://11-bridges.com/techblog/blipverts/thematic-html5-child-theme/</link>
			</item>
	<item>
		<title>Avoid Hardcoded Urls in Javascript Files</title>
		<description><![CDATA[var js_base_url = location.protocol + '//' + location.host;]]></description>
		<link>http://11-bridges.com/techblog/blipverts/avoid-hardcoded-urls-in-javascript-files/</link>
			</item>
	<item>
		<title>Flush Rewrite Rules in WordPress</title>
		<description><![CDATA[Sometime url rewrite rules caching make development tasks unpredictable in wordpress. Here&#8217;s how you can force them to flush on every rewrite: //flushes rewrite rules on every page to make sure changes take function flushRules&#40;&#41;&#123; &#160; &#160; global $wp_rewrite; &#160; &#160; &#160; &#160;$wp_rewrite-&#62;flush_rules&#40;&#41;; &#125; add_filter&#40;'wp_loaded','flushRules'&#41;;]]></description>
		<link>http://11-bridges.com/techblog/blipverts/flush-rewrite-rules-in-wordpress/</link>
			</item>
	<item>
		<title>Put Code on Forums</title>
		<description><![CDATA[Many forums support special tags that allow developers to put sample code in their posts. Try using [code] [/code] and [php] [/php] to open and close code samples and see if you get nice formatting.]]></description>
		<link>http://11-bridges.com/techblog/blipverts/put-code-on-forums/</link>
			</item>
	<item>
		<title>Fancybox Breaks Javascript Jquery or Ajax</title>
		<description><![CDATA[Javascript bindings usually happen in the doc ready. Fancybox loads pages after the doc ready so none of the javascript bindings occur. The solution is to wrap the non-working javascript in the jquery .live() function which, will bind on the future loading of the page or iframe in the fancybox frame: $&#40;'#all_users .selectit'&#41;.live&#40;'click', function&#40;&#41; &#123; [...]]]></description>
		<link>http://11-bridges.com/techblog/blipverts/fancybox-breaks-javascript-jquery-or-ajax/</link>
			</item>
	<item>
		<title>Enable IS_AJAX in Codeigniter</title>
		<description><![CDATA[// Define Ajax Request define&#40;'IS_AJAX', isset&#40;$_SERVER&#91;'HTTP_X_REQUESTED_WITH'&#93;&#41; &#38;&#38; strtolower&#40;$_SERVER&#91;'HTTP_X_REQUESTED_WITH'&#93;&#41; == 'xmlhttprequest'&#41;;]]></description>
		<link>http://11-bridges.com/techblog/blipverts/enable-is_ajax-in-codeigniter/</link>
			</item>
</channel>
</rss>

