<?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>Websitez.com</title>
	<atom:link href="http://websitez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://websitez.com</link>
	<description>The largest collection of premium WordPress mobile themes and WordPress mobile plugins.</description>
	<lastBuildDate>Tue, 21 Feb 2012 15:34:14 +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>How To Do A JavaScript Cross-Domain POST or GET With jQuery or XMLHttpRequest</title>
		<link>http://websitez.com/javascript-cross-domain-post-get/</link>
		<comments>http://websitez.com/javascript-cross-domain-post-get/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 01:04:57 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=730</guid>
		<description><![CDATA[If you have spent any significant amount of time in JavaScript sending data to the server, you have probably come across the strict cross-domain policy that has been in existence since the beginning of AJAX. There are ways around this such as a proxy script, but they are all kind of a pain. Most people are unaware [...]]]></description>
			<content:encoded><![CDATA[<p>If you have spent any significant amount of time in JavaScript sending data to the server, you have probably come across the strict <a title="Same Origin Policy" href="https://developer.mozilla.org/en/Same_origin_policy_for_JavaScript" target="_blank">cross-domain policy</a> that has been in existence since the beginning of AJAX.</p>
<p>There are ways around this such as a proxy script, but they are all kind of a pain. Most people are unaware of the fact that it is possible to create a JavaScript POST cross-domain, and it is fairly easy to do. It is true that not all browsers support this, but you will be pleasantly surprised to know that the following browsers do support it: Internet Explorer 8+, Firefox 3.5+, Safari 4+, and Chrome. Yes, IE8+ does support it. I was surprised too.</p>
<p>So the big question is, how does it work? Cross-domain ajax is achieved through a protocol called Cross-Origin Resource Sharing.</p>
<h2>Cross-Origin Resource Sharing</h2>
<p><a title="Cross-Origin Resource Sharing" href="http://www.w3.org/TR/access-control/" target="_blank">Cross-Origin Resource Sharing</a> is a W3C Working Draft that defines how the browser and server must communicate when accessing sources across origins. The basic gist is that the client and server use special headers to either deny or accept a cross-origin request.</p>
<p>For example, if a script such as http://www.websitez.com/list.js performs a POST request via AJAX to the website http://www.hosting.com/save_listings.php, it would normally fail due to cross-origin policy. However, if in the PHP script &#8220;save_listings.php&#8221;, you set a special header called &#8220;Access-Control-Allow-Origin&#8221; with the proper value, the POST will be successful.</p>
<p>In PHP, the proper code for the &#8220;save_listings.php&#8221; file would be:</p>
<blockquote><p>header(&#8220;Access-Control-Allow-Origin: http://www.websitez.com&#8221;);</p>
</blockquote>
<p>By setting that header value, it will allow the script located at http://www.websitez.com/list.js to perform POST and GET requests cross-origin to the http://www.hosting.com/save_listings.php script, which is on an entirely different domain.</p>
<p>There are additional headers that can be set as well:</p>
<blockquote><p>Access-Control-Allow-Origin: http://www.websitez.com<br />Access-Control-Allow-Methods: POST, GET<br />Access-Control-Allow-Headers: NCZ<br />Access-Control-Max-Age: 1728000</p>
</blockquote>
<p>You can also specify a &#8220;*&#8221; as the domain to allow any domain to perform a POST or GET to the script in question. Obviously this is a massive security risk and should only be done if you know the exact ramifications of doing so.</p>
<blockquote><p>Access-Control-Allow-Origin: *</p>
</blockquote>
<p>For further information, please checkout this great post from <a title="Cross-Domain Resource Sharing" href="http://www.nczonline.net/blog/2010/05/25/cross-domain-ajax-with-cross-origin-resource-sharing/" target="_blank">NCZOnline</a> detailing the proper way to perform the AJAX call to maximize support across as many browsers as possible as well as further details on the additional headers that you can specify to gain control over who, when, and what can access your script.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/javascript-cross-domain-post-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>New Website Suggestions Tool</title>
		<link>http://websitez.com/new-website-suggestions-tool/</link>
		<comments>http://websitez.com/new-website-suggestions-tool/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 20:43:20 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=709</guid>
		<description><![CDATA[One of the contributors to the WP Mobile Detector project, Joshua Odmark, has built a website suggestions tool that provides suggestions for websites. There are many of these tools available on the Internet, but most just simply return statistics about your website. Things such as page size, keyword counts, header tag counts, header output, and [...]]]></description>
			<content:encoded><![CDATA[<p>One of the contributors to the WP Mobile Detector project, <a title="Joshua Odmark" href="http://joshuaodmark.com" target="_blank">Joshua Odmark</a>, has built a <a title="Website Suggestions Tool" href="http://websitesuggestions.net" target="_blank">website suggestions tool</a> that provides suggestions for websites.</p>
<p>There are many of these tools available on the Internet, but most just simply return statistics about your website. Things such as page size, keyword counts, header tag counts, header output, and other miscellaneous facts about your website. But this tool provides specific instructions on how to improve your website. It tells you in lamen turns what it found and how to fix it with a link to a resource that will help you complete the suggestion.</p>
<p>For example, when we ran the tool for Websitez.com, it returned back this information:</p>
<p><a href="http://websitez.com/wp-content/uploads/2012/01/suggestions.gif"><img class="alignnone size-medium wp-image-710" title="suggestions" src="http://websitez.com/wp-content/uploads/2012/01/suggestions-300x274.gif" alt="" width="300" height="274" /></a></p>
<p>As you can see, there are plenty of things that we need to fix here at Websitez.com!</p>
<p>Checkout the <a title="Website Tips" href="http://websitesuggestions.net" target="_blank">website tips</a> and suggestions tool, it is like having a webmaster expert in your back pocket!</p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/new-website-suggestions-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Oh Sencha, where did you go wrong?</title>
		<link>http://websitez.com/oh-sencha-where-did-you-go-wrong/</link>
		<comments>http://websitez.com/oh-sencha-where-did-you-go-wrong/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 06:43:41 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Sencha Touch]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=707</guid>
		<description><![CDATA[The last time I remember not being able to find a suitable framework from which to build a website off of was around 2000. I find myself with that feeling again with mobile development. I have tried multiple libraries, each with their pros and cons. I recently decided to dive into Sencha touch to see [...]]]></description>
			<content:encoded><![CDATA[<p>The last time I remember not being able to find a suitable framework from which to build a website off of was around 2000.</p>
<p>I find myself with that feeling again with mobile development. I have tried multiple libraries, each with their pros and cons. I recently decided to dive into Sencha touch to see if it could be my plug and play framework to create interesting effects.</p>
<p>While <a href="http://www.sencha.com/products/touch/">Sencha Touch</a> has glimpses of genius, it still falls far behind where a viable mobile framework needs to be. Their own example site runs horribly on my iPhone 4 on a 3G connection. On the <a href="http://dev.sencha.com/deploy/touch/examples/">Sencha Touch demo page</a>, not a SINGLE demo worked as expected 100% of the time.</p>
<p>And in all reality, not a single library performs well on a 3G connection. A compartmentalized version of jQuery is the only thing that I have found that is the proper file size and provides the proper user experience for all smart phone users.</p>
<p>The truth of the matter is, while the demos may work great in a native app, they just don&#8217;t work well in the real world. When you actually have to deploy something to tens of thousands of users on the mobile web, there really isn&#8217;t a framework that has the performance needed to give the visitors the experience they desire.</p>
<p>I have resorted to using a combination of CSS3 and jQuery on my projects because it is the only predictable solution that gives a great user experience every time.</p>
<p>As I look back at Sencha, they continue to approach their library as some sort of a comparison to everything that is out there and place the success of their company on constantly &#8220;one-upping&#8221; the competition. When in reality, if they just created a modularized framework that allowed the inclusion and exclusion of certain components with graceful degradation built in, they would have a framework that would not only work for a native app, but it would be the first that truly worked for the mobile web.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/oh-sencha-where-did-you-go-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>jQuery Performance Tips</title>
		<link>http://websitez.com/jquery-performance-tips/</link>
		<comments>http://websitez.com/jquery-performance-tips/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 18:31:41 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=696</guid>
		<description><![CDATA[I just came across a great blog post linked from HN with 28 jQuery performance tips. There are a few tips from the blog post that we disagree with, but here are some of the best tips from the post: The fastest way to select an element in jQuery is by the element ID. The [...]]]></description>
			<content:encoded><![CDATA[<p>I just came across a great blog post linked from <a href="http://news.ycombinator.com/item?id=3352259" target="_blank">HN</a> with 28 jQuery performance tips. There are a few tips from the blog post that we disagree with, but here are some of the best tips from the post:</p>
<ul>
<li>The fastest way to select an element in jQuery is by the element ID.</li>
<li>The second fastest way to select an element is by tags.</li>
<ul>
<li>var receiveNewsletter = jQuery(&#8216;#nslForm input.on&#8217;);</li>
</ul>
<li>The slowest way to select elements is by class name.</li>
<li>When traversing elements, use find instead of multiple items in a selector. It is slightly faster.</li>
<ul>
<li>var divs = jQuery(&#8216;.testdiv&#8217;, &#8216;#pageBody&#8217;); // 2353 on Firebug 3.6</li>
<li>var divs = jQuery(&#8216;#pageBody&#8217;).find(&#8216;.testdiv&#8217;); // 2324 on Firebug 3.6 &#8211; The best time</li>
</ul>
<li>Cache elements in jQuery that you use often.</li>
<ul>
<li>var header = jQuery(&#8216;#header&#8217;);</li>
<li>var divs = header.find(&#8216;div&#8217;);</li>
</ul>
<li>Use the data() function to store information on your elements for later.</li>
<ul>
<li>jQuery(&#8216;#head&#8217;).data(&#8216;name&#8217;, &#8216;value&#8217;);</li>
<li>//Later in the flow</li>
<li>jQuery(&#8216;#head&#8217;).data(&#8216;name&#8217;);</li>
</ul>
<li>Always load the jQuery library from Google&#8217;s CDN</li>
<ul>
<li>https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js</li>
</ul>
</ul>
<div>To view all of the performance tips, please visit <a title="jQuery Performance Tips Cheat Sheet" href="http://dumitruglavan.com/jquery-performance-tips-cheat-sheet/" target="_blank">jQuery Performance Tips Cheat Sheet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/jquery-performance-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>jQuery &amp; Mobile Web Development</title>
		<link>http://websitez.com/jquery-mobile-web-development/</link>
		<comments>http://websitez.com/jquery-mobile-web-development/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 19:59:35 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=693</guid>
		<description><![CDATA[Anytime we start a mobile project, we always look for ways to use jQuery. I don&#8217;t think I need to explain the awesomeness that is jQuery, but I wanted to write this blog post to discuss how we are using jQuery for mobile and offer up a few recommendations, even though their recent deletion of [...]]]></description>
			<content:encoded><![CDATA[<p>Anytime we start a mobile project, we always look for ways to use jQuery. I don&#8217;t think I need to explain the awesomeness that is jQuery, but I wanted to write this blog post to discuss how we are using jQuery for mobile and offer up a few recommendations, even though their recent <a title="Jquery Deletes All Plugins" href="http://blog.jquery.com/2011/12/08/what-is-happening-to-the-jquery-plugins-site/#pluginstldr" target="_blank">deletion of all of the jQuery plugins</a> is a bit embarrassing, we are still all about jQuery.</p>
<p>If you need to do DOM manipulation for the mobile web, <a title="jQuery" href="http://www.jquery.com" target="_blank">jQuery</a> is a great option. Hell, even if you want to do DOM manipulation in a native app, jQuery is still a great solution.</p>
<p>My biggest complaint is the size of the library. Even when it is minified and GZIPPED, it is still 31kb. That is impressive for the desktop web, but in my opinion it is not sufficient for the mobile web where latency is priority #1. </p>
<p>I found a great resource that has the vast majority of the functions that make jQuery great at the fraction of the file size. It is called <a title="jQuip" href="https://github.com/mythz/jquip" target="_blank">jQuip</a> and it is available on <a title="Github" href="http://www.github.com" target="_blank">Github</a>. It reduces the file size from 31KB to 6KB. Keep in mind this does not contain all of the functionality of the official jQuery, but 90% of it (what it actually contains is listed in detail on the link above). Their goal is to create modules that allow you the developer to include only the functions you need which will allow you to significantly decrease the file size of the included libraries.</p>
<p>This is one of those projects you will want to keep an eye on. They are onto something.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/jquery-mobile-web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Checkout WP Login &#8211; Our Latest WordPress Plugin</title>
		<link>http://websitez.com/checkout-wp-login-our-latest-wordpress-plugin/</link>
		<comments>http://websitez.com/checkout-wp-login-our-latest-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 04:27:32 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=684</guid>
		<description><![CDATA[They say that necessity is the mother of invention and that is exactly the case with our latest plugin, the WP Login WordPress Plugin. It seemed that almost every project we worked on we needed to modify the login form for WordPress. One project it was simply changing the logo from the default WordPress logo [...]]]></description>
			<content:encoded><![CDATA[<p>They say that necessity is the mother of invention and that is exactly the case with our latest plugin, the <a title="WP Login WordPress Plugin" href="http://wordpress.org/extend/plugins/wp-login/" target="_blank">WP Login WordPress Plugin</a>.</p>
<p>It seemed that almost every project we worked on we needed to modify the login form for WordPress. One project it was simply changing the logo from the default WordPress logo to a custom one. The next it was changing the colors to match the theme we developed for the customer. And the most recent projects we had to place the login form inside of the theme layout. By the second project, we decided to stop re-inventing the wheel and create a plugin.</p>
<p>The WP Login plugin, or the WordPress login plugin, allows you to insert the login form into your active theme. It also extracts out the login form and allows you to customize it through a simple file editor. If you&#8217;d prefer to keep the stand-a-lone login page but simply edit the style and change the logo, the plugin can do that as well.</p>
<p>This plugin was meant to handle any possible WordPress login form customization, and we hope that you will give it a try and send us any feedback you may have.</p>
<p><strong><a title="WP Login WordPress Plugin" href="http://wordpress.org/extend/plugins/wp-login/" target="_blank">Download it here!</a></strong></p>
<p><a href="http://websitez.com/wp-content/uploads/2011/10/screenshot-1.jpg"><img class="alignnone size-medium wp-image-685" title="screenshot-1" src="http://websitez.com/wp-content/uploads/2011/10/screenshot-1-300x240.jpg" alt="" width="300" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/checkout-wp-login-our-latest-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
	<price></price>	</item>
		<item>
		<title>Timthumb.php Security Flaw &#8211; Patched in WP Mobile Detector 1.7 and Above</title>
		<link>http://websitez.com/timthumb-php-security-flaw-patched-in-wp-mobile-detector-1-7-and-above/</link>
		<comments>http://websitez.com/timthumb-php-security-flaw-patched-in-wp-mobile-detector-1-7-and-above/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 02:10:54 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=669</guid>
		<description><![CDATA[Thank you to a couple users of the WP Mobile Detector who brought a security hole to my attention. Recently a hack was found that exploited the Timthumb.php script. The WP Mobile Detector utilizes the Timthumb.php script, so it could potentially effect any blog running the WP Mobile Detector plugin. I am happy to announce [...]]]></description>
			<content:encoded><![CDATA[<p>Thank you to a couple users of the WP Mobile Detector who brought a security hole to my attention.</p>
<p>Recently a hack was found that exploited the Timthumb.php script. The WP Mobile Detector utilizes the Timthumb.php script, so it could potentially effect any blog running the WP Mobile Detector plugin.</p>
<p>I am happy to announce that this was fixed and an update was pushed to WordPress.org. As long as you have version 1.7 or higher you are all set.</p>
<p>The exploit had to do with how a version of Timthumb.php validated the domains that were authorized for the script. It performed a string comparison on an array that was incorrect.</p>
<p>For example, if this domain was authorized &#8220;domain.com&#8221;, then this domain would also be authorized, &#8220;mydomain.com&#8221;, since it contains the authorized domain. This is a pretty huge error in the script and has since been fixed in the most recent version.</p>
<p>If you use Timthumb.php with any of your projects, it is recommended that you update to the most recent version, which is version 2.8 as of writing this post.</p>
<p>You can find the most recent version here: <a href="http://timthumb.googlecode.com/svn/trunk/timthumb.php">http://timthumb.googlecode.com/svn/trunk/timthumb.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/timthumb-php-security-flaw-patched-in-wp-mobile-detector-1-7-and-above/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<price></price>	</item>
		<item>
		<title>Mobile Detection</title>
		<link>http://websitez.com/website-mobile-detection/</link>
		<comments>http://websitez.com/website-mobile-detection/#comments</comments>
		<pubDate>Mon, 16 May 2011 17:02:48 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=566</guid>
		<description><![CDATA[A powerful mobile detection script has arrived! Websitez.com is proud to announce our own javascript based mobile detection script that works with any website. By including a snippet of javascript in your website, a visitor from a mobile device will be redirected to any mobile website you desire. This script uses the same detection available [...]]]></description>
			<content:encoded><![CDATA[<h2>A powerful mobile detection script has arrived!</h2>
<p>Websitez.com is proud to announce our own javascript based mobile detection script that works with any website.</p>
<p>By including a snippet of javascript in your website, a visitor from a mobile device will be redirected to any mobile website you desire.</p>
<p>This script uses the same detection available in the WP Mobile Detector premium plugin.</p>
<h2>Features</h2>
<ul>
<li>Detects 5,000+ mobile devices.</li>
<li>Install and configure in less than a minute.</li>
<li>Instantaneous mobile detection.</li>
<li>Backed by proven technology.</li>
</ul>
<h2>Get the script!</h2>
<p>If you&#8217;re interested in being one of the first to use this script for your own website, please send an email to: <a href="mailto:estolz@websitez.com?subject=Websitez.com Mobile Detection Javascript Request">estolz[AT]websitez[DOT]com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/website-mobile-detection/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	<price></price>	</item>
		<item>
		<title>jQuery Mobile Themes &amp; Swatches</title>
		<link>http://websitez.com/jquery-mobile-themes-swatches/</link>
		<comments>http://websitez.com/jquery-mobile-themes-swatches/#comments</comments>
		<pubDate>Thu, 05 May 2011 01:56:52 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Mobile Themes]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=540</guid>
		<description><![CDATA[JQM Includes 5 Themes As of JQM alpha release 4.1, there are 5 themes included with the library. Currently there is no ThemeRoller for JQM, so in order to create additional themes you have to edit the jQuery Mobile CSS. The easiest way to do this is to copy all the styling from the theme [...]]]></description>
			<content:encoded><![CDATA[<h2>JQM Includes 5 Themes</h2>
<p>As of JQM alpha release 4.1, there are <a href="http://jquerymobile.com/demos/1.0a4.1/docs/api/themes.html">5 themes</a> included with the library. Currently there is no ThemeRoller for JQM, so in order to create additional themes you have to edit the jQuery Mobile CSS.</p>
<p>The easiest way to do this is to copy all the styling from the theme that has the most similar style to what you&#8217;re trying to create and then change the letter that signifies the style.</p>
<p>Currently JQM uses letter notation. Theme &#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;, &#8220;d&#8221;, and &#8220;e&#8221;. As of writing this article, you must use single letter annotation.</p>
<p>So for example, if you copy Theme &#8220;a&#8221; styles, you would have to change all of the references to a to the letter of your choice, for example, &#8220;f&#8221;.</p>
<blockquote><pre>.ui-bar-a {</pre>
<pre>would become</pre>
<pre>.ui-bar-f {</pre>
</blockquote>
<p>Luckily the CSS contains comments that lets you easily see the block of CSS that is for each theme, so it is easy to copy and paste. There is no easy way such as search and replace to create a new theme with a new letter, you&#8217;ll have to manually perform the change.</p>
<h2>Additional JQM Themes</h2>
<p>Since JQM is relatively new, there are very few custom themes out there. Here I will give you a list of the current available themes, if you have any more, leave a comment and I will update the post.</p>
<ul>
<li>http://www.emeraldcpu.com/zman3/jqm/mobileindextheme.php</li>
<li>http://www.stabinger.us/test/jqm.html</li>
</ul>
<h2>Helpful Posts On WordPress jQuery Mobile Themes</h2>
<ul>
<li>http://www.ifadey.com/2011/01/wordpress-theme-using-jquery-mobile/</li>
<li>http://www.catswhocode.com/blog/how-to-create-a-mobile-wordpress-theme-with-jquery-mobile</li>
<li><a href="http://websitez.com/category/jquery-mobile/">jQuery Mobile &#8211; Websitez</a></li>
</ul>
<h2>WordPress jQuery Mobile Themes</h2>
<ul>
<li><a href="/wordpress-mobile/">WP Mobile Detector</a> contains 5 JQM Themes</li>
<li>http://www.webdevcat.com/themes</li>
<li>http://frobert.com/en/2011/03/30/generic-jquery-mobile-wordpress-theme/</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/jquery-mobile-themes-swatches/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<price></price>	</item>
		<item>
		<title>jQuery Mobile Swipe Problem On Android</title>
		<link>http://websitez.com/jquery-mobile-swipe-problem-on-android/</link>
		<comments>http://websitez.com/jquery-mobile-swipe-problem-on-android/#comments</comments>
		<pubDate>Tue, 03 May 2011 23:37:49 +0000</pubDate>
		<dc:creator>Eric Stolz</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>

		<guid isPermaLink="false">http://websitez.com/?p=531</guid>
		<description><![CDATA[After weeks of playing around with jQuery Mobile and Android, I was unable to get the swipe functionality to perform properly. There is always a delay on the swipe action before anything is actually triggered. I also tried the Sencha Touch library, which performed slightly better, but still not proper. This leads me to believe [...]]]></description>
			<content:encoded><![CDATA[<p>After weeks of playing around with <a href="http://www.jquerymobile.com">jQuery Mobile</a> and Android, I was unable to get the swipe functionality to perform properly.</p>
<p>There is always a delay on the swipe action before anything is actually triggered.</p>
<p>I also tried the <a href="http://www.sencha.com/products/touch/">Sencha Touch</a> library, which performed slightly better, but still not proper.</p>
<p>This leads me to believe it is an issue with the Android browsers swipe detection.</p>
<p>Testing Equipment</p>
<ul>
<li>Default Browser for each: HTC Droid Incredible w/ Android 2.2, Droid X w/ Android 2.2, HTC Thunderbolt w/ Android 2.2</li>
<li>JQM 1.0a4.1.js</li>
</ul>
<p>I will update this post if I am able to find a solution. If you know of a solution, please share it in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://websitez.com/jquery-mobile-swipe-problem-on-android/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<price></price>	</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: websitez.com @ 2012-02-23 00:05:59 -->
