<?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>Web Development Blog</title>
	<atom:link href="http://eisabainyo.net/weblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://eisabainyo.net/weblog</link>
	<description>Web Development, Web Design, Web Applications, Web 2.0, AJAX, WordPress Themes, Search Engine Optimisation, Latest Technologies and more..</description>
	<lastBuildDate>Wed, 01 Sep 2010 03:49:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Useful jQuery Snippets</title>
		<link>http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/</link>
		<comments>http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 02:20:01 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1599</guid>
		<description><![CDATA[Following are 10 Useful jQuery snippets for any website.   To use these snippets, you must include jQuery library in your page first and then add the snippets inside DOM ready function as follow:
$(document).ready(function() {
   // add your snippets here
});
1. Display Warning Message for IE 6 Users
if ( (jQuery.browser.msie) &#38;&#38; (parseInt(jQuery.browser.version) &#60; [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/">10 Useful jQuery Snippets</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/" rel="bookmark" title="June 17, 2010">Clear default text in input boxes on click with jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/17/dropdown-menu-population-using-json-and-jquery/" rel="bookmark" title="July 17, 2009">Dropdown menu population using JSON and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/28/check-username-availability-using-ajax-and-jquery/" rel="bookmark" title="May 28, 2009">Check username availability using AJAX and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/07/back-to-top-link-with-jquery/" rel="bookmark" title="April 7, 2009">Back to top link with jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/28/open-link-in-a-new-window-using-jquery/" rel="bookmark" title="April 28, 2009">Open link in a new window using jQuery</a></li>
</ul><!-- Similar Posts took 15.612 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>Following are 10 Useful jQuery snippets for any website.   To use these snippets, you must include <a href="http://jquery.com/">jQuery library</a> in your page first and then add the snippets inside DOM ready function as follow:</p>
<p><em>$(document).ready(function() {<br />
   // add your snippets here<br />
});</em></p>
<p><strong>1. Display Warning Message for IE 6 Users</strong></p>
<pre>if ( (jQuery.browser.msie) &amp;&amp; (parseInt(jQuery.browser.version) &lt; 7) ) {
	$('body').prepend('&lt;div class=&quot;warning&quot;&gt;You are using an old version of Internet Explorer which is not supported.  Please upgrade your browser in order to view this website.&lt;/div&gt;');
}</pre>
<p><strong>2. Add hasJS class to body tag when Javascript is enabled</strong></p>
<pre>$('body').addClass('hasJS');</pre>
<p><strong>3. Clear default text in input fields on click</strong></p>
<p>Sample Usage: </p>
<pre>&lt;input type=&quot;text&quot; name=&quot;search&quot; class=&quot;search&quot; value=&quot;Keywords&quot; title=&quot;Keywords&quot; /&gt;</pre>
<pre>$('input[type=text]').focus(function() {
    var title = $(this).attr('title');
    if ($(this).val() == title) {
        $(this).val('');
    }
}).blur(function() {
    var title = $(this).attr('title');
    if ($(this).val() == '') {
        $(this).val(title);
    }
});</pre>
<p><strong>4. Show/hide more content on click</strong></p>
<p>Sample Usage:</p>
<pre>&lt;p&gt;&lt;a href=&quot;#how-to&quot; class=&quot;toggle&quot;&gt;How to write a good article?&lt;/a&gt;&lt;/p&gt;</pre>
<pre>&lt;div id=&quot;how-top&quot;&gt;
	How to tips go here.
&lt;/div&gt;
</pre>
<pre>
$('a.toggle').toggle(function() {
	var id = $(this).attr(&quot;href&quot;);
	$(this).addClass(&quot;active&quot;);
	$(id).slideDown();
}, function() {
	var id = $(this).attr(&quot;href&quot;);
	$(this).removeClass(&quot;active&quot;);
	$(id).slideUp();
});
</pre>
<p><strong>5. Open Print dialog</strong></p>
<p>Sample Usage:</p>
<pre>&lt;a href=&quot;#&quot; class=&quot;print&quot;&gt;Print this page&lt;/a&gt;</pre>
<pre>
$('a.print').click(function(){
	window.print();
	return false;
});
</pre>
<p><strong>6. Add &#8220;hover&#8221; class to table data (and change the background color of the class via CSS)</strong></p>
<pre>
$('table').delegate('td', 'hover', function(){
	$(this).toggleClass('hover');
});
</pre>
<p><strong>7. Open link in a new window if rel is set to external</strong></p>
<p>Sample Usage:</p>
<pre>&lt;a href=&quot;http://www.google.com&quot; rel=&quot;external&quot;&gt;Google&lt;/a&gt;</pre>
<pre>$('a[rel=external]').attr('target', '_blank');</pre>
<p><strong>8. Add &#8220;odd&#8221; class to alternate table row (and change the background color of the class via CSS to have stripes effect for table)</strong></p>
<pre>$('tr:odd').addClass('odd');  </pre>
<p><strong>9. Check if div exists on page</strong></p>
<pre>if ( $('#myDiv').length ) {
    // do something with myDiv
}</pre>
<p><strong>10. Check/Uncheck all checkboxes</strong></p>
<p>Sample Usage:</p>
<pre>
&lt;div class=&quot;options&quot;&gt;
	&lt;ul&gt;
		&lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;select-all&quot;&gt;Select All&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;#&quot; class=&quot;reset-all&quot;&gt;Reset All&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;

	&lt;input type=&quot;checkbox&quot; id=&quot;option1&quot; /&gt;&lt;label for=&quot;option1&quot;&gt;Option 1&lt;/label&gt;
	&lt;input type=&quot;checkbox&quot; id=&quot;option2&quot; /&gt;&lt;label for=&quot;option2&quot;&gt;Option 2&lt;/label&gt;
	&lt;input type=&quot;checkbox&quot; id=&quot;option3&quot; /&gt;&lt;label for=&quot;option3&quot;&gt;Option 3&lt;/label&gt;
	&lt;input type=&quot;checkbox&quot; id=&quot;option4&quot; /&gt;&lt;label for=&quot;option4&quot;&gt;Option 4&lt;/label&gt;
&lt;/div&gt;
</pre>
<pre>
$('.select-all').live('click', function(){
	$(this).closest('.options').find('input[type=checkbox]').attr('checked', true);
	return false;
});

$('.reset-all').live('click', function(){
	$(this).closest('.options').find('input[type=checkbox]').attr('checked', false);
	return false;
});</pre>
<p>Read <a href="http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/">10 Useful jQuery Snippets</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/" rel="bookmark" title="June 17, 2010">Clear default text in input boxes on click with jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/17/dropdown-menu-population-using-json-and-jquery/" rel="bookmark" title="July 17, 2009">Dropdown menu population using JSON and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/28/check-username-availability-using-ajax-and-jquery/" rel="bookmark" title="May 28, 2009">Check username availability using AJAX and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/07/back-to-top-link-with-jquery/" rel="bookmark" title="April 7, 2009">Back to top link with jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/28/open-link-in-a-new-window-using-jquery/" rel="bookmark" title="April 28, 2009">Open link in a new window using jQuery</a></li>
</ul><!-- Similar Posts took 7.495 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</title>
		<link>http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/</link>
		<comments>http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 02:19:24 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1594</guid>
		<description><![CDATA[August 19, 2010 &#8211; Sydney, Australia &#8211; Anansi Web Development announces its latest iPhone web app project, Store Locator for iPhone, a powerful yet simple and easy-to-use Store Locator web app for iPhone users.  Store Locator for iPhone offers a hosted solution for franchise owners and service providers who are looking to have a [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/">Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/" rel="bookmark" title="August 12, 2010">When an iPhone web app is better than a native app</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/05/7-days-traffic-building-exercise-%e2%80%93-day-2/" rel="bookmark" title="February 5, 2010">7 Days Traffic Building Exercise – Day 2</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/11/07/google-search-tips/" rel="bookmark" title="November 7, 2008">Google Search Tips</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/28/australia-day-flyover-images-live/" rel="bookmark" title="February 28, 2007">Australia Day Flyover Images Live</a></li>
</ul><!-- Similar Posts took 31.317 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><em>August 19, 2010 &#8211; Sydney, Australia</em> &#8211; Anansi Web Development announces its latest iPhone web app project, Store Locator for iPhone, a powerful yet simple and easy-to-use Store Locator web app for iPhone users.  Store Locator for iPhone offers a hosted solution for franchise owners and service providers who are looking to have a mobile presence.  </p>
<p>&#8220;We built Store Locator for iPhone with Generation Y and mobile technology in mind,&#8221; says Ei Sabai Nyo, lead developer for Anansi Web Development.  &#8220;Generation Y wants information right now, right where they are, and with the Store Locator for iPhone, they will be able to locate stores closest to them with their smart-phones like an iPhone when they are on the road. For businesses, this offers a perfect opportunity to increase their mobile presence and attract more Gen-Y customers.&#8221;</p>
<p><strong>Store Locator for iPhone offers:</strong><br />
- Search Stores by Postcode<br />
- Search Nearby Stores (using iPhone built-in GPS)<br />
- Integration with Google Maps app on iPhone (directions, street view, traffic information)<br />
- Native iPhone app look and feel<br />
- Both Portrait &#038; Landscape Support<br />
- An easy to remember app URL, eg: <a href="http://sitelocator.mobi/apple/">http://sitelocator.mobi/apple/</a></p>
<p>In addition, Store Locator for iPhone comes with a Back-end Administrator Console which is all web based, allowing business owners to Add, Edit, or Delete store locations from anywhere!</p>
<p><strong>Pricing &#038; Availability</strong><br />
Store Locator for iPhone is available from as little as $50 a month for franchise owners and service providers in Australia.<br />
<a href="http://sitelocator.mobi">http://sitelocator.mobi</a></p>
<p><strong>About Anansi Web Development</strong><br />
Anansi Web Development is a leading Web Development Agency based in Sydney, Australia.  It is founded by Ei Sabai Nyo, an aspiring Gen-Y Internet Entrepreneur and Web Developer.  The company uses open source technologies and latest web development technologies to provide cutting-edge web and mobile solutions for various organisations.  Anansi Web Development is well known for its free web apps developed for the latest and most advanced smart-phone, iPhone. For more information, visit <a href="http://www.anansi.com.au">www.anansi.com.au</a></p>
<p><strong>Contact Info</strong><br />
For press inquiries, and any other questions, please contact hello@anansi.com.au.</p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/">Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/" rel="bookmark" title="August 12, 2010">When an iPhone web app is better than a native app</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/05/7-days-traffic-building-exercise-%e2%80%93-day-2/" rel="bookmark" title="February 5, 2010">7 Days Traffic Building Exercise – Day 2</a></li>

<li><a href="http://eisabainyo.net/weblog/2008/11/07/google-search-tips/" rel="bookmark" title="November 7, 2008">Google Search Tips</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/28/australia-day-flyover-images-live/" rel="bookmark" title="February 28, 2007">Australia Day Flyover Images Live</a></li>
</ul><!-- Similar Posts took 26.650 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When an iPhone web app is better than a native app</title>
		<link>http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/</link>
		<comments>http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 22:30:33 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Web Development Blog]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1579</guid>
		<description><![CDATA[We have recently launched our latest iPhone app project, Store Locator for iPhone (http://sitelocator.mobi).  It&#8217;s a hosted web app solution designed for franchise owners and business in multiple locations in Australia like Woolworths, Kmart, Coles, JB Hi-Fi, Pizza Hut, KFC, WestPac, ANZ, Vodafone, Optus, Medibank, Westfield etc.  Have a look at our proof-of-concept [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/">When an iPhone web app is better than a native app</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/" rel="bookmark" title="August 19, 2010">Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/20/building-mashups-for-the-society-mashup-australia-part-ii/" rel="bookmark" title="November 20, 2009">Building mashups for the society (Mashup Australia) &#8211; Part II</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/06/12/safari-on-windows/" rel="bookmark" title="June 12, 2007">Safari on Windows</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/" rel="bookmark" title="June 24, 2010">Recommended Hosting for WordPress 3.0</a></li>
</ul><!-- Similar Posts took 18.400 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>We have recently launched our latest iPhone app project, <a href="http://sitelocator.mobi" target="_blank">Store Locator for iPhone</a> (<strong>http://sitelocator.mobi</strong>).  It&#8217;s a hosted web app solution designed for franchise owners and business in multiple locations in Australia like Woolworths, Kmart, Coles, JB Hi-Fi, Pizza Hut, KFC, WestPac, ANZ, Vodafone, Optus, Medibank, Westfield etc.  Have a look at our proof-of-concept Store Locators on iPhone: <a href="http://sitelocator.mobi/apple/" target="_blank">Apple Store Locator</a> (Australia wide) or <a href="http://sitelocator.mobi/myer/" target="_blank">Myer Store Locator</a> (NSW only).</p>
<p><a href="http://sitelocator.mobi/myer/" target="_blank"><img src="http://www.anansi.com.au/apps/locator/images/s1.png" alt="Myer Store Locator" /></a><br />
<em>Myer Store Locator</em></p>
<blockquote><p><strong>Store Locator for iPhone</strong><br />
Get your business found by many smartphone users all over Australia.<br />
Let your customers locate your stores quickly and easily.<br />
Obtain an easy-to-remember web address <em>sitelocator.mobi/yourstore</em><br />
No need to install anything! Just touch and go! </p>
<p><a href="http://sitelocator.mobi" target="_blank">SIGN UP NOW!</a></p></blockquote>
<p><strong>What does it do? </strong></p>
<p>The iPhone Store Locator is a store locator web app that works by postcode or your location via GPS. There are two main components to the Store Locator app; front end and back end. </p>
<p>The front end allows users to locate a store or a business by postcode or by their current location (using iPhone&#8217;s built-in GPS).  The app will find up to 5 store locations nearby that are within approximately 25 kilometers (15 miles) radius of the specified location. </p>
<p>The back end allows franchise owners and service providers to add the locations of their offices and stores from a web based system and this will automatically geocode addresses. The web based back end enables businesses to add, edit and delete store locations from anywhere via a simple user interface. Businesses can also customise the brand of their front end app by uploading a logo. </p>
<p><strong>Why a web app instead of a native app?</strong> </p>
<p>One of the most common questions asked is why we chose a web app over a native app for this project. There were quite a few reasons why we went this way, but let us highlight 3 main benefits for businesses and developers.</p>
<p><strong>1. Benefits For Businesses/Clients </strong></p>
<p><strong>Accessibility (No Download/Install) </strong></p>
<p>There are some popular Store Locator native iPhone apps on App Store like Starbucks Store Locator and McDonalds Store Locator.  However, the problem with a native app is that you need to download and install the app first before you can use it.  And most people who just need to use the app every once in a while are not likely to download the app.  This is why web apps are better.  If, for example, you are looking for the nearest Myer store while you are on the road, the first thing you would do is go to Myer website.  And on Myer website, you will see a banner ad with a special message for iPhone users that goes something like &#8220;Looking for a Myer Store near you?  Click here!&#8221;  and once you click/touch on that link, you will be taken to the Myer Store Locator for iPhone.  Since it is a web app, you don&#8217;t need to install anything at all.  All you need is Internet connection and WebKit-based browser which you already have with your phone. </p>
<p><strong>Portability</strong></p>
<p>With native iPhone apps, the app is only available for one single device &#8211; the iPhone.  However, with the web app, we have developed it in such a way as it is compatible with most browsers so you can use it not just on an iPhone but also on other smart phones like Android, HTC and Blackberry.  It is a great win for businesses because they are able to reach broader smart phone users on multiple devices and platforms with one single app.  </p>
<p><strong>Cost Saving</strong></p>
<p>Getting a web app developed is much cheaper compared to getting a native app developed.   With Store Locator for iPhone, business owners get the best of both worlds.  Unlike having a website where the business owner has to manage hosting, domain name registration, etc, Anansi Store Locator is a hosted solution and therefore all the technical details are looked after by Anansi.   There is no need to spend thousands of dollars on development or server infrastructure. Since the app is already developed and hosted by Anansi, all you need is to pay for is a subscription fee.  Users of the app won&#8217;t need to pay anything as it will be available for free on the web.  </p>
<p><strong>2. Benefits For Developers</strong></p>
<p><strong>Ease of Maintenance</strong> </p>
<p>Since iPhone web apps don&#8217;t need to be approved by Apple to be listed on App Store, the developers (<a href="http://www.anansi.com.au" target="_blank">Anansi Web Development</a>), can release updates whenever necessary. Updates take effect immediately the moment they are deployed onto the web server, as oppose to native apps where updates have to be installed by the user on their iPhone. As a web app developer, you can be sure that every user of the app is using one single version, whereas with native iPhone apps, it is possible for users to be using different (outdated) versions. </p>
<p><strong>No Sharing of Revenue Stream </strong></p>
<p>Apple takes about 30% of the price from iPhone apps sold on App Store.   However, with web apps, the developer doesn&#8217;t need to share the revenue.  The cost of running/hosting the web app works out to be much cheaper than sharing the revenue with Apple. </p>
<p><strong>Full Control</strong></p>
<p>Native iPhone apps are like desktop apps that are installed onto your mobile device while web apps are accessed from a web location via a URL.  Having a web app means the developer has full control over the app, when it comes to configuring, deploying and upgrading the app. It suits our business model because we need to allow business owners to be able to sign up and make their Store Locator app available as quickly as possible, and this is not possible with native iPhone apps where you have to go through approval from Apple to be listed in the App Store which could take at 1-2 weeks. </p>
<p>iPhone web apps, however, are not  without its flaws.  Web apps are generally not as sexy as a native app.  However, in our case, we are developing a utility app, not a game app, and therefore sexiness is not a requirement!  The user interface for the iPhone Store Locator is designed to look and feel like a native app so we feel we are geting the best of both worlds. If you are interested in taking a look or signing up for your business, check out the <a href="http://www.anansi.com.au/apps/locator/" target="_blank">app site</a> or <a href="http://www.anansi.com.au/contact.php" target="_blank">contact us</a> at any time.  </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/">When an iPhone web app is better than a native app</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/" rel="bookmark" title="August 19, 2010">Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/20/building-mashups-for-the-society-mashup-australia-part-ii/" rel="bookmark" title="November 20, 2009">Building mashups for the society (Mashup Australia) &#8211; Part II</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/06/12/safari-on-windows/" rel="bookmark" title="June 12, 2007">Safari on Windows</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/" rel="bookmark" title="June 24, 2010">Recommended Hosting for WordPress 3.0</a></li>
</ul><!-- Similar Posts took 25.340 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/08/12/when-an-iphone-web-app-is-better-than-a-native-web-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 Link Challenge for Web Development Blog</title>
		<link>http://eisabainyo.net/weblog/2010/07/16/7-link-challenge-for-web-development-blog/</link>
		<comments>http://eisabainyo.net/weblog/2010/07/16/7-link-challenge-for-web-development-blog/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 00:44:09 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Web Development Blog]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1572</guid>
		<description><![CDATA[Problogger is having a 7 Link Challenge and inviting all bloggers to participate.  The idea of the challenge is to create a blog post that links to 7 different posts on your blog or other people blogs.  It sounded fun and so I thought I&#8217;d give it a go for this Web Development [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/07/16/7-link-challenge-for-web-development-blog/">7 Link Challenge for Web Development Blog</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/03/26/wordpress-iphone-app-a-step-by-step-user-guide-to-using-wordpress-for-iphone/" rel="bookmark" title="March 26, 2010">WordPress iPhone App &#8211; a step by step user guide to using WordPress for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/08/7-days-traffic-building-exercise-%e2%80%93-day-5/" rel="bookmark" title="February 8, 2010">7 Days Traffic Building Exercise – Day 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/08/14/becoming-a-web-php-developer/" rel="bookmark" title="August 14, 2007">Becoming a Web (PHP) Developer</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/24/how-to-add-a-breadcrumb-to-your-blog-and-have-it-appear-on-googles-search-result-snippet/" rel="bookmark" title="November 24, 2009">How to add a breadcrumb to your blog and have it appear on Google&#8217;s Search Result Snippet</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/14/customising-categoryphp-in-wordpress/" rel="bookmark" title="May 14, 2007">Customising category.php in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/02/a-list-of-all-posts-in-an-alphabetical-order/" rel="bookmark" title="February 2, 2009">A list of all posts in an alphabetical order</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/" rel="bookmark" title="March 10, 2010">Display 5 latest posts in each category in WordPress</a></li>
</ul><!-- Similar Posts took 20.504 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>Problogger is having a <a href="http://www.problogger.net/archives/2010/07/16/take-the-7-link-challenge-today/">7 Link Challenge</a> and inviting all bloggers to participate.  The idea of the challenge is to create a blog post that links to 7 different posts on your blog or other people blogs.  It sounded fun and so I thought I&#8217;d give it a go for this Web Development Blog.  </p>
<p><strong>1.  First Post</strong><br />
The first ever blog post for Web Development Blog was written almost 5 years ago, on Christmas Day 2005.   It is titled <a href="http://eisabainyo.net/weblog/2005/12/25/welcome-to-all-things-web/">Welcome to All Things Web</a>.   </p>
<p><strong>2. A post I enjoyed writing the most</strong><br />
I enjoyed writing almost all the <a href="http://eisabainyo.net/weblog/category/tutorials/">Web Development Tutorials</a> on this blog, because writing them gives me a sense of satisfaction from sharing my knowledge with other developers all over the world.  </p>
<p><strong>3. A post which had a great discussion</strong><br />
I wrote a tutorial on <a href="http://eisabainyo.net/weblog/2007/08/19/removing-file-extension-via-htaccess/">Removing file extension via .htaccess</a> 3 years ago in 2007 but it is still the most popular blog post on this blog, linked by many and have the most number of comments &#8211; mainly by developers and webmasters asking questions or helping each other.  </p>
<p><strong>4. A post on someone else’s blog that you wish you’d written</strong><br />
This is a very tough one because there are many blog posts that I like.  But if I had to choose one, it would be <a href="http://www.joergm.com/2010/01/why-all-programmers-should-blog/">Why all programmers should blog</a> written by Joerg Mueller.  I personally would like to see more blogs by programmers and developers.   I think we have way too many designers blogs but not as many developers blogs.  </p>
<p><strong>5. Your most helpful post</strong><br />
My most helpful post has to be <a href="http://eisabainyo.net/weblog/web-hosting-comparison-chart/">Web Hosting Comparison Chart</a> that I put together.   Before publishing that post, I received many emails from friends and blog readers who asked me the same question, <em>Which host do I recommend</em>?   It is very hard to recommend a single hosting company to everyone because the requirements for every website are different.  But after writing that blog post, whenever someone asked me the question, I could just give them the link and they can make their own decision.  In my opinion, helpful posts are the ones that provide an answer to a question.  </p>
<p><strong>6. A post with a title that you are proud of</strong><br />
I am not much of a copywriter, so my post titles are never entertaining or catchy.   But this title certainly catches almost everyone&#8217;s attention, &#8220;<a href="http://eisabainyo.net/weblog/making-a-passive-income-online/">Making a Passive Income Online</a>&#8220;.  And I am proud and amazed at the same time because I didn&#8217;t even try hard to come up with that title.  </p>
<p><strong>7. A post that you wish more people had read</strong><br />
I wish more people read my rant &#8220;<a href="http://eisabainyo.net/weblog/2010/02/25/so-you-dont-like-ads-on-websitesblogs/">So you don’t like ads on websites/blogs</a>&#8221; and gave their 2cents worth.     </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/07/16/7-link-challenge-for-web-development-blog/">7 Link Challenge for Web Development Blog</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/03/26/wordpress-iphone-app-a-step-by-step-user-guide-to-using-wordpress-for-iphone/" rel="bookmark" title="March 26, 2010">WordPress iPhone App &#8211; a step by step user guide to using WordPress for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/08/7-days-traffic-building-exercise-%e2%80%93-day-5/" rel="bookmark" title="February 8, 2010">7 Days Traffic Building Exercise – Day 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/08/14/becoming-a-web-php-developer/" rel="bookmark" title="August 14, 2007">Becoming a Web (PHP) Developer</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/24/how-to-add-a-breadcrumb-to-your-blog-and-have-it-appear-on-googles-search-result-snippet/" rel="bookmark" title="November 24, 2009">How to add a breadcrumb to your blog and have it appear on Google&#8217;s Search Result Snippet</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/14/customising-categoryphp-in-wordpress/" rel="bookmark" title="May 14, 2007">Customising category.php in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/02/a-list-of-all-posts-in-an-alphabetical-order/" rel="bookmark" title="February 2, 2009">A list of all posts in an alphabetical order</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/" rel="bookmark" title="March 10, 2010">Display 5 latest posts in each category in WordPress</a></li>
</ul><!-- Similar Posts took 12.811 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/07/16/7-link-challenge-for-web-development-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Recommended Hosting for WordPress 3.0</title>
		<link>http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/</link>
		<comments>http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 05:42:59 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1553</guid>
		<description><![CDATA[WordPress 3.0 was released a few days ago, and it&#8217;s more powerful than it has ever been.   And if you are thinking of using WordPress 3 for your blog or even as a CMS, I recommend a self-hosted version rather than the free version hosted on WordPress.com. 
So, what are the server requirements [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/">Recommended Hosting for WordPress 3.0</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/04/13/wordpress-upgrade/" rel="bookmark" title="April 13, 2007">WordPress upgrade</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/03/dreamhost-invitations-promo-codes/" rel="bookmark" title="May 3, 2010">DreamHost Invitations / Promo codes</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/07/09/wordpress-upgrade-from-15-to-the-latest-203/" rel="bookmark" title="July 9, 2006">WordPress Upgrade (from 1.5 to the latest 2.0.3)</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/08/php-projects-join-forces-to-go-php-5/" rel="bookmark" title="July 8, 2007">PHP projects join forces to Go PHP 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/03/03/wordpress-211-is-dangerous/" rel="bookmark" title="March 3, 2007">WordPress 2.1.1 is dangerous</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/16/wordpress-22-getz-is-released/" rel="bookmark" title="May 16, 2007">WordPress 2.2 (Getz) is released</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/09/hello-ella/" rel="bookmark" title="February 9, 2007">Hello Ella</a></li>
</ul><!-- Similar Posts took 24.969 ms --></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2010/06/thelonious/">WordPress 3.0</a> was released a few days ago, and it&#8217;s more powerful than it has ever been.   And if you are thinking of using WordPress 3 for your blog or even as a CMS, I recommend a self-hosted version rather than the free version hosted on WordPress.com. </p>
<p>So, what are the server requirements to host WordPress 3.0? According to the WordPress official website, your WordPress host should meet the following minimum requirements:</p>
<ul>
<li>PHP 4.3 or greater</li>
<li>MySQL 4.1.2 or greater</li>
<li>The mod_rewrite Apache module  (This is necessary to have pretty SEO-friendly URLs)</li>
</ul>
<p>Note that WordPress will soon quit support for PHP 4 and MySQL 4 (read <a href="http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/">official announcement here</a>), so if you are planning to continue using WordPress next year (2011), I strongly recommend that you switch to a hosting that has PHP 5 and MySQL 5 to avoid having to use an older version of WordPress in the near future when the newer versions no longer support PHP 4/MySQL4.   Both <a href="http://eisabainyo.net/view/dreamhost">Dreamhost</a> and <a href="http://eisabainyo.net/view/bluehost">Bluehost</a> have PHP 5 and MySQL 5.  </p>
<p>I have used more than 10 web hosting providers for my online projects but here are my recommended hosting for WordPress 3.0.  </p>
<p><strong>Dreamhost </strong></p>
<p><a href="http://eisabainyo.net/view/dreamhost">Dreamhost</a> is an ideal hosting provider for advanced users.  Their Control Panel is a bit different to CPanel/Plesk but they have so many more features than CPanel/Plesk if you know what you are doing.  And if you install WordPress using &#8220;WordPress one-click installer&#8221; on dreamhost, they will upgrade it for you automatically.  This is a good feature because you don&#8217;t have to manually upgrade WordPress whenever a new version comes out.  But you need to be careful not to hack the core code or core files of WordPress because your changes will be overwritten when they install a new version.  I have heard a lot of mixed reviews about support at dreamhost but I have never really had to contact them because their knowledge base and <a href="http://wiki.dreamhost.com/WordPress">wiki</a> are quite comprehensive.  I am using Dreamhost for this Web Development Blog and it is my recommend hosting provider for developers and technical savvy people.    Dreamhost costs $8.53 per month which is a bit more expensive than most shared hosting but you do get what you pay for and you can get $30 off by using this coupon: WEBDEV30. </p>
<p><a href="http://eisabainyo.net/view/dreamhost">Test drive Dreamhost now</a>. </p>
<p><a href="http://eisabainyo.net/view/dreamhost"><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/06/one-click-dreamhost.gif" alt="" title="Dreamhost&#039;s one-click installs" width="416" height="258" class="alignnone size-full wp-image-1555" /></a><br />
<em>Screenshot of Dreamhost&#039;s one-click installs</em></p>
<p><strong>BlueHost</strong></p>
<p><a href="http://eisabainyo.net/view/bluehost">Bluehost</a> is an ideal hosting provider for basic users.  Each hosting account comes with a CPanel and one click install feature to install WordPress on your hosting account in less than 3 minutes.    The install feature also allows you to install a previous version of WordPress so if, for some reason, you need to install WordPress 2.9 instead of WordPress 3.0 for plugin compatibility reasons, you can do so easily.  The following video shows you how to install WordPress on Bluehost using their one click install.    I am using Bluehost for a few of my websites.   At $6.95/month with a free domain name for life and unlimited domain hosting, the price is very affordable.  </p>
<p><a href="http://eisabainyo.net/view/bluehost">Test drive BlueHost now</a>. </p>
<p><object type="application/x-shockwave-flash" data="http://tutorials.bluehost.com/flash/BH_wordpress_skin.swf" width="430" height="400"><param name="movie" value="http://tutorials.bluehost.com/flash/BH_wordpress_skin.swf" /><param name="autoplay" value="false" /><param name="play" value="false" /><param name="autostart" value="0" /><param name="allowScriptAccess" value="always" /></object><br />
<em>Video Tutorial of how to install WordPress using SimpleScripts on BlueHost</em></p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/">Recommended Hosting for WordPress 3.0</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/04/13/wordpress-upgrade/" rel="bookmark" title="April 13, 2007">WordPress upgrade</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/03/dreamhost-invitations-promo-codes/" rel="bookmark" title="May 3, 2010">DreamHost Invitations / Promo codes</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/07/09/wordpress-upgrade-from-15-to-the-latest-203/" rel="bookmark" title="July 9, 2006">WordPress Upgrade (from 1.5 to the latest 2.0.3)</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/07/08/php-projects-join-forces-to-go-php-5/" rel="bookmark" title="July 8, 2007">PHP projects join forces to Go PHP 5</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/03/03/wordpress-211-is-dangerous/" rel="bookmark" title="March 3, 2007">WordPress 2.1.1 is dangerous</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/05/16/wordpress-22-getz-is-released/" rel="bookmark" title="May 16, 2007">WordPress 2.2 (Getz) is released</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/09/hello-ella/" rel="bookmark" title="February 9, 2007">Hello Ella</a></li>
</ul><!-- Similar Posts took 6.731 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/06/24/recommended-hosting-for-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Clear default text in input boxes on click with jQuery</title>
		<link>http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/</link>
		<comments>http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:56:46 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1548</guid>
		<description><![CDATA[The following Javascript will clear default text value in input boxes when you click on them.  To trigger the Javascript, you&#8217;ll need to specify both title and value attributes and set class of the input field to &#8220;text&#8221;.  jQuery library is required for this to work.  
Javascript

$('.text').focus(function () {
	if ($(this).val() == $(this).attr("title")) [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/">Clear default text in input boxes on click with jQuery</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/" rel="bookmark" title="September 1, 2010">10 Useful jQuery Snippets</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/28/check-username-availability-using-ajax-and-jquery/" rel="bookmark" title="May 28, 2009">Check username availability using AJAX and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/" rel="bookmark" title="May 29, 2010">Click to copy and open site script</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/17/dropdown-menu-population-using-json-and-jquery/" rel="bookmark" title="July 17, 2009">Dropdown menu population using JSON and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/" rel="bookmark" title="May 19, 2009">Fieldset and Legend bug in IE8</a></li>
</ul><!-- Similar Posts took 10.176 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>The following Javascript will clear default text value in input boxes when you click on them.  To trigger the Javascript, you&#8217;ll need to specify both title and value attributes and set class of the input field to &#8220;text&#8221;.  jQuery library is required for this to work.  </p>
<p><strong>Javascript</strong></p>
<pre>
$('.text').focus(function () {
	if ($(this).val() == $(this).attr("title")) {
		$(this).val("");
	}
}).blur(function () {
	if ($(this).val() == "") {
		$(this).val($(this).attr("title"));
	}
});
</pre>
<p>Examples: </p>
<pre>
&lt;input type=&quot;text&quot; name=&quot;q&quot; class=&quot;q text&quot; value=&quot;Search for terms&quot; title=&quot;Search for terms&quot; /&gt;

&lt;input type=&quot;password&quot; name=&quot;password&quot; class=&quot;text&quot; value=&quot;Password&quot; title=&quot;Password&quot;  /&gt;
</pre>
<p>Read <a href="http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/">Clear default text in input boxes on click with jQuery</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2010/09/01/10-useful-jquery-snippets/" rel="bookmark" title="September 1, 2010">10 Useful jQuery Snippets</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/28/check-username-availability-using-ajax-and-jquery/" rel="bookmark" title="May 28, 2009">Check username availability using AJAX and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/" rel="bookmark" title="May 29, 2010">Click to copy and open site script</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/17/dropdown-menu-population-using-json-and-jquery/" rel="bookmark" title="July 17, 2009">Dropdown menu population using JSON and jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/" rel="bookmark" title="May 19, 2009">Fieldset and Legend bug in IE8</a></li>
</ul><!-- Similar Posts took 8.779 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ThemeForest vs WooThemes</title>
		<link>http://eisabainyo.net/weblog/2010/06/06/themeforest-vs-woothemes/</link>
		<comments>http://eisabainyo.net/weblog/2010/06/06/themeforest-vs-woothemes/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 11:17:45 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[WWW]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1521</guid>
		<description><![CDATA[I was looking to buy a premium WordPress Theme for one of my projects a while ago and I came across ThemeForest and WooThemes.  There are other premium WordPress Theme stores like Elegant Themes, Templatic, Template Monster, etc, but ThemeForest and WooThemes are leading the market.   After looking around for a while, [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/06/06/themeforest-vs-woothemes/">ThemeForest vs WooThemes</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/02/27/golden-green-wordpress-theme/" rel="bookmark" title="February 27, 2007">Golden Green WordPress Theme &#8211; Download</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/22/how-to-create-a-archive-page-in-wordpress/" rel="bookmark" title="February 22, 2010">5 steps to creating a custom Archive page in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/06/wordpress-themes-update/" rel="bookmark" title="April 6, 2007">WordPress Themes Update</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/06/12/customised-wordpress-themes/" rel="bookmark" title="June 12, 2006">Customised Wordpress Themes</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/05/20/wordpress-themes/" rel="bookmark" title="May 20, 2006">WordPress Themes</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/" rel="bookmark" title="March 10, 2010">Display 5 latest posts in each category in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/10/how-to-customise-wordpress-admin-login-page/" rel="bookmark" title="May 10, 2010">How to customise WordPress Admin Login page</a></li>
</ul><!-- Similar Posts took 24.640 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>I was looking to buy a premium WordPress Theme for one of my projects a while ago and I came across <a href="http://eisabainyo.net/view/themeforest">ThemeForest</a> and <a href="http://eisabainyo.net/view/woo-themes">WooThemes</a>.  There are other premium WordPress Theme stores like <a href="http://eisabainyo.net/view/elegant">Elegant Themes</a>, <a href="http://eisabainyo.net/view/templatic">Templatic</a>, <a href="http://eisabainyo.net/view/templates">Template Monster</a>, etc, but ThemeForest and WooThemes are leading the market.   After looking around for a while, I decided to review and compare ThemeForest and WooThemes.  </p>
<p><strong>ThemeForest</strong></p>
<p><strong>Pros: </strong><br />
- Useful interface (you can search themes by criteria, list themes by authors, see ratings for each theme, no. of sales made, etc)<br />
- Cheap (average $25 &#8211; $30 per theme)<br />
- Comes with PSD (Photoshop file)<br />
- Lots of variety<br />
- Comments section for each theme allow you to directly communicate with the theme author and ask questions </p>
<p><strong>Cons:</strong><br />
- Customising each theme can be very different because they are built and designed by many theme developers around the globe.<br />
- Support is provided by the theme author rather than the ThemeForest staff<br />
- Mostly English Only</p>
<p><strong>Quality of themes:</strong><br />
Most themes come with Cufon/sIFR Custom font, jquery plugins, pre-installed WordPress plugins like Related Posts, Most Popular Posts, Social Linking, etc.</p>
<p><strong>WooThemes</strong></p>
<p><strong>Pros:</strong><br />
- Great Support / Knowledge Base available to theme users and theme owners<br />
- Standard &#8220;Theme Options&#8221; in the admin section that is built on a single WooThemes framework to allow you to customise each theme very easily<br />
- Available in multiple languages </p>
<p><strong>Cons:</strong><br />
- No Advanced Interface (eg: You can&#8217;t browse themes by author or rating or popularity)<br />
- Expensive (average $70 per theme) *Cheaper if you join the theme club<br />
- PSD only included for Developer License (Average price of a Developer License for each theme: $150)<br />
- Fewer themes compared to ThemeForest</p>
<p><strong>Quality of themes:</strong><br />
As with ThemeForest, most themes from WooThemes come with Cufon Custom font, jquery plugins, pre-installed WordPress plugins like Related Posts, Most Popular Posts, Social Linking, etc.  The quality of themes from both stores are very similar. Themes from both stores are written in valid XHTML/CSS, compatible with most modern browsers, etc. </p>
<p><strong>Which one to buy?</strong><br />
As I mentioned earlier, if you are looking for a lot of variety and a value for money,  <a href="http://eisabainyo.net/view/themeforest">ThemeForest</a> is definitely the answer.  The pricing is a lot more affordable compared to WooThemes as they have a bigger community.  But if you are looking for consistency and a standard framework and are willing to pay more for that, <a href="http://eisabainyo.net/view/woo-themes">WooThemes</a> is your friend.   </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/06/06/themeforest-vs-woothemes/">ThemeForest vs WooThemes</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2007/02/27/golden-green-wordpress-theme/" rel="bookmark" title="February 27, 2007">Golden Green WordPress Theme &#8211; Download</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/02/22/how-to-create-a-archive-page-in-wordpress/" rel="bookmark" title="February 22, 2010">5 steps to creating a custom Archive page in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/04/06/wordpress-themes-update/" rel="bookmark" title="April 6, 2007">WordPress Themes Update</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/06/12/customised-wordpress-themes/" rel="bookmark" title="June 12, 2006">Customised Wordpress Themes</a></li>

<li><a href="http://eisabainyo.net/weblog/2006/05/20/wordpress-themes/" rel="bookmark" title="May 20, 2006">WordPress Themes</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/" rel="bookmark" title="March 10, 2010">Display 5 latest posts in each category in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/10/how-to-customise-wordpress-admin-login-page/" rel="bookmark" title="May 10, 2010">How to customise WordPress Admin Login page</a></li>
</ul><!-- Similar Posts took 9.717 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/06/06/themeforest-vs-woothemes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to code an HTML Email Newsletter</title>
		<link>http://eisabainyo.net/weblog/2010/05/31/how-to-code-an-html-email-newsletter/</link>
		<comments>http://eisabainyo.net/weblog/2010/05/31/how-to-code-an-html-email-newsletter/#comments</comments>
		<pubDate>Mon, 31 May 2010 06:19:58 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[xHTML]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1490</guid>
		<description><![CDATA[In this step-by-step tutorial, I&#8217;m going to show you exactly how to code an HTML email; be it an HTML Email Signature or HTML Email Newsletter.  

1.  Changing the background color

&#60;table width=&#34;100%&#34; border=&#34;0&#34; cellspacing=&#34;0&#34; cellpadding=&#34;0&#34; bgcolor=&#34;#333333&#34;&#62;
  &#60;tr&#62;
    &#60;td&#62;

	&#60;/td&#62;
   &#60;/tr&#62;
&#60;/table&#62;

2. Setting a fixed width and background color for [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/05/31/how-to-code-an-html-email-newsletter/">How to code an HTML Email Newsletter</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>

<li><a href="http://eisabainyo.net/weblog/2005/12/26/transitional-vs-strict/" rel="bookmark" title="December 26, 2005">Transitional vs. Strict</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/24/how-to-style-a-submit-button-in-css/" rel="bookmark" title="April 24, 2009">How to style a Submit button in CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/" rel="bookmark" title="March 10, 2010">Display 5 latest posts in each category in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/04/22/align-an-image-in-center-and-middle-using-css/" rel="bookmark" title="April 22, 2010">Align an image in center and middle using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/14/web-20-reflection-effect-in-photoshop/" rel="bookmark" title="February 14, 2007">web 2.0 reflection effect in Photoshop</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/01/16/tips-on-building-websites-for-mobile-browsers/" rel="bookmark" title="January 16, 2010">Tips on building websites for mobile browsers</a></li>
</ul><!-- Similar Posts took 19.631 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>In this step-by-step tutorial, I&#8217;m going to show you exactly how to code an HTML email; be it an HTML Email Signature or HTML Email Newsletter.  </p>
<p><a href="http://eisabainyo.net/view/streamsend" target="_blank"><img src="http://www.awltovhc.com/image-3838536-10786843" width="300" height="100" alt="StreamSend.com" border="0"/></a></p>
<p><strong>1.  Changing the background color</strong></p>
<pre>
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; bgcolor=&quot;#333333&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;

	&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><strong>2. Setting a fixed width and background color for the content area</strong></p>
<pre>
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; bgcolor=&quot;#333333&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;
		&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td&gt;

			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;/table&gt;
	&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><strong>3.  Changing the font size, style and color of the content area</strong></p>
<pre>
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; bgcolor=&quot;#333333&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;
		&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; style=&quot;font-family:Arial, Helvetica, sans-serif; color: #5b656b; font-size: 12px;&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td&gt;

			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;/table&gt;
	&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><strong>4. Setting a different font, color and style for headings</strong></p>
<pre>&lt;span style=&quot;font-size: 14px; font-weight: bold; color: #ed0000;
font-family:Arial, Helvetica, sans-serif;&quot;&gt;Latest News from the Web Development Blog&lt;/span&gt;</pre>
<p><strong>5. Inserting a line between two blocks of text</strong></p>
<pre>
	&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; style=&quot;font-family:Arial, Helvetica, sans-serif; color: #5b656b; font-size: 12px;&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td&gt;
				First block of text.
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td style=&quot;border-top: 1px solid #66666;&quot;&gt;
				Second block of text.
			&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;
</pre>
<p><strong>6. Inserting and floating an image to the left</strong></p>
<pre>
	&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; style=&quot;font-family:Arial, Helvetica, sans-serif; color: #5b656b; font-size: 12px;&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td width=&quot;150&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;
				&lt;img src=&quot;http://full.path.to.the.image/image.jpg&quot; width=&quot;120&quot; height=&quot;100&quot; alt=&quot;My image&quot; /&gt;
			&lt;/td&gt;
			&lt;td width=&quot;450&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;
				Text next to the image
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td colspan=&quot;2&quot;&gt;
				Copyright text
			&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;
</pre>
<p><strong>7. Aligning text to right (or left or center)</strong></p>
<pre>
	&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; style=&quot;font-family:Arial, Helvetica, sans-serif; color: #5b656b; font-size: 12px;&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td&gt;
				&lt;div&gt;Some text goes here&lt;/div&gt;
				&lt;div align=&quot;right&quot;&gt;&lt;a href=&quot;#&quot;&gt;Read more&lt;/a&gt;&lt;/div&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;
</pre>
<p><strong>8. Changing a link color </strong></p>
<pre>&lt;a href=&quot;#&quot; style=&quot;color: #00ccff;
text-decoration: none;&quot;&gt;Read more&lt;/a&gt;</pre>
<p><strong>9. Adding a border around the content area</strong></p>
<pre>
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; bgcolor=&quot;#333333&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;
		&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;5&quot; style=&quot;font-family:Arial, Helvetica, sans-serif; color: #5b656b; font-size: 12px; border: 1px solid #00ccff; border-collapse: collapse;&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td&gt;

			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;/table&gt;
	&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><strong>10. Opening a link in a new window</strong></p>
<pre>&lt;a href=&quot;http://www.google.com&quot; target=&quot;_blank&quot;
style=&quot;color: #00ccff; text-decoration: none;&quot;&gt;Go to Google&lt;/a&gt;</pre>
<p><strong>Putting it altogether</strong></p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/05/sample-newsletter-300x280.gif" alt="" title="Sample Email Newsletter" width="300" height="280" class="alignnone size-medium wp-image-1496" /></p>
<pre>
&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;10&quot; bgcolor=&quot;#cccccc&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;
		&lt;table width=&quot;600&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; cellspacing=&quot;5&quot; style=&quot;font-family:Arial, Helvetica, sans-serif; color: #5b656b; font-size: 12px; border: 1px solid #999999; border-collapse: collapse;&quot; bgcolor=&quot;#ffffff&quot;&gt;
		&lt;tr&gt;
			&lt;td colspan=&quot;2&quot; height=&quot;70&quot; bgcolor=&quot;#000033&quot;&gt;
				&lt;span style=&quot;font-size: 14px; font-weight: bold; color: #ff6600; font-family:Arial, Helvetica, sans-serif;&quot;&gt;Latest News from the Web Development Blog&lt;/span&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td colspan=&quot;2&quot; height=&quot;10&quot; bgcolor=&quot;#ff6600&quot;&gt;&lt;/td&gt;
		&lt;tr&gt;
		&lt;tr&gt;
			&lt;td width=&quot;150&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;
				&lt;img src=&quot;http://eisabainyo.net/weblog/wp-content/uploads/2010/05/sexy-web-design.jpg&quot; width=&quot;250&quot; height=&quot;326&quot; alt=&quot;Sexy Web Design Book Cover&quot; /&gt;
			&lt;/td&gt;
			&lt;td width=&quot;450&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;
				&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus tincidunt nisl et felis sodales faucibus. In hac habitasse platea dictumst. Sed tincidunt egestas velit mollis faucibus. Aliquam feugiat, neque nec porta accumsan, odio nulla laoreet risus, ut vestibulum lacus velit eget mi. Aliquam vehicula magna sed leo lobortis et luctus magna venenatis. Nunc et massa ipsum. In tristique, elit hendrerit tincidunt consectetur, diam purus tempor ante, eget scelerisque velit est vitae lorem. Nullam vulputate blandit dui et tempor. Curabitur quam lectus, suscipit non placerat a, consectetur vel velit. &lt;/p&gt;
				&lt;p&gt;Vestibulum egestas ipsum quis elit pulvinar ullamcorper. Vestibulum ac neque sed neque consequat ornare eu et justo. Phasellus pulvinar vestibulum nisl, ut tempus dolor commodo at. Morbi ultricies nisl vel massa accumsan tempor. Donec quam nibh, euismod vitae vestibulum ac, ullamcorper non eros. Integer quis sapien ac enim rhoncus auctor. Nulla facilisi. Vivamus et varius massa. Integer aliquam ultricies risus nec vulputate. Donec porta viverra magna, a suscipit arcu porta non. &lt;/p&gt;
				&lt;div align=&quot;right&quot;&gt;&lt;a href=&quot;#&quot; style=&quot;color: #ff6600; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;Read more&lt;/a&gt;&lt;/div&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td colspan=&quot;2&quot;&gt;
				&lt;p&gt;Praesent ut purus sit amet elit tincidunt laoreet a sed mauris. Integer a lacinia augue. Donec hendrerit sapien et lorem tincidunt a luctus purus vehicula. Cras magna diam, auctor sit amet pretium in, pretium a odio. Proin sed laoreet lorem. Mauris tortor diam, tempus sit amet lacinia in, egestas eu lectus. Vivamus aliquet hendrerit tellus sit amet pretium. Praesent dictum libero pretium magna pretium congue. Pellentesque consequat est a tortor tincidunt placerat in a ante. Sed non elit enim, vitae scelerisque ipsum. Integer fringilla, massa in ultrices bibendum, orci neque luctus arcu, in pulvinar elit risus eu nunc. Etiam dignissim malesuada consequat. Donec eget magna risus, eu vehicula ante. Quisque adipiscing placerat tincidunt. Aliquam ultrices vehicula velit, vel dignissim sem feugiat malesuada. Donec magna nisi, pretium at ullamcorper ultrices, sodales eu odio. Nulla facilisi. Curabitur hendrerit dictum rhoncus. Praesent bibendum dapibus ligula, ut placerat dolor vulputate vel. &lt;/p&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td colspan=&quot;2&quot; bgcolor=&quot;#cccccc&quot;&gt;
				&lt;span style=&quot;font-size: 10px; font-weight: bold; color: #666666; font-family:Arial, Helvetica, sans-serif;&quot;&gt;Copyright 2010 All Rights Reserved.&lt;/span&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;
	&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><strong>Email Newsletter Templates</strong></p>
<p>If you are looking for professional email newsletter designs, <a href="http://themeforest.net/?ref=eisabai">ThemeForest</a> is the best place to buy email newsletter templates because each template package comes with a complete HTML code and layered PSD file (and sometimes multiple color variations).  Our favourites are:</p>
<p><a href="http://themeforest.net/item/inewsletter/82750?ref=eisabai">iNewsletter<br />
<img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/05/inewsletter.jpg" alt="" title="iNewsletter" width="450" class="alignnone size-full wp-image-1498" /></a></p>
<p><a href="http://themeforest.net/item/platnum-email-template-6-layouts-8-colors/92281?ref=eisabai">Platnum<br />
<img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/05/platnum.jpg" alt="" title="Platnum" width="450" class="alignnone size-full wp-image-1499" /><br />
</a></p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/05/31/how-to-code-an-html-email-newsletter/">How to code an HTML Email Newsletter</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>

<li><a href="http://eisabainyo.net/weblog/2005/12/26/transitional-vs-strict/" rel="bookmark" title="December 26, 2005">Transitional vs. Strict</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/24/how-to-style-a-submit-button-in-css/" rel="bookmark" title="April 24, 2009">How to style a Submit button in CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/10/display-5-latest-posts-in-each-category-in-wordpress/" rel="bookmark" title="March 10, 2010">Display 5 latest posts in each category in WordPress</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/04/22/align-an-image-in-center-and-middle-using-css/" rel="bookmark" title="April 22, 2010">Align an image in center and middle using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/02/14/web-20-reflection-effect-in-photoshop/" rel="bookmark" title="February 14, 2007">web 2.0 reflection effect in Photoshop</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/01/16/tips-on-building-websites-for-mobile-browsers/" rel="bookmark" title="January 16, 2010">Tips on building websites for mobile browsers</a></li>
</ul><!-- Similar Posts took 11.383 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/05/31/how-to-code-an-html-email-newsletter/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Designing and Optimising Websites for iPad</title>
		<link>http://eisabainyo.net/weblog/2010/05/30/designing-and-optimising-websites-for-ipad/</link>
		<comments>http://eisabainyo.net/weblog/2010/05/30/designing-and-optimising-websites-for-ipad/#comments</comments>
		<pubDate>Sat, 29 May 2010 14:22:25 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development Blog]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1470</guid>
		<description><![CDATA[iPad was released a month ago, and is made available in Australia a few days ago, but already, I am seeing a lot of big name companies and brands trying to optimise thier websites for iPad.  While I have yet to optimise a website for iPad, I have put together some notes about designing [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/05/30/designing-and-optimising-websites-for-ipad/">Designing and Optimising Websites for iPad</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/01/16/tips-on-building-websites-for-mobile-browsers/" rel="bookmark" title="January 16, 2010">Tips on building websites for mobile browsers</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/" rel="bookmark" title="August 19, 2010">Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/26/wordpress-iphone-app-a-step-by-step-user-guide-to-using-wordpress-for-iphone/" rel="bookmark" title="March 26, 2010">WordPress iPhone App &#8211; a step by step user guide to using WordPress for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/09/27/10-tips-i-have-learned-from-wds2007-day-1/" rel="bookmark" title="September 27, 2007">10 tips I have learned from WDS2007 &#8211; Day 1</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>
</ul><!-- Similar Posts took 16.345 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>iPad was released a month ago, and is made available in Australia a few days ago, but already, I am seeing a lot of big name companies and brands trying to optimise thier websites for iPad.  While I have yet to optimise a website for iPad, I have put together some notes about designing and optimising a website for iPad to help us get started soon.</p>
<p><img src="http://eisabainyo.net/weblog/wp-content/uploads/2010/05/ipad-websites.jpg" alt="" title="Designing and Optimising Websites for iPad" width="553" height="402" class="alignnone size-full wp-image-1472" /></p>
<p><strong>Screen Resolution</strong><br />
1024&#215;768 pixel resolution (9.7-inch (diagonal))<br />
This is as big as a normal computer screen.  According to the Analytics stats for this Web Development Blog, 10.47% of the total visitors have 1024&#215;768 pixel resolution.</p>
<p><strong>User Agent String</strong></p>
<pre>Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10
(KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10</pre>
<p>This is useful if you have a device detection script on your server that redirects mobile devices to a different website.  For example, since iPad doesn&#8217;t support Flash, if you have a flash website, it is a good idea to redirect iPad visitors to the HTML version of the website. </p>
<p><strong>CSS for iPad</strong></p>
<pre>&lt;link rel=&quot;stylesheet&quot; media=&quot;only screen and (min-device-width: 768px)
and (max-device-width: 1024px)&quot; href=&quot;ipad.css&quot; type=&quot;text/css&quot; /&gt;</pre>
<pre>&lt;link rel=&quot;stylesheet&quot; media=&quot;all and
(orientation:portrait)&quot; href=&quot;portrait.css&quot;&gt;</pre>
<pre>&lt;link rel=&quot;stylesheet&quot; media=&quot;all and
(orientation:landscape)&quot; href=&quot;landscape.css&quot;&gt;</pre>
<p>As with optimising websites for iPhone, you can specify a CSS file just for iPad devices.  You can also have different CSS for Portrait and Landscape orientations without using Javascript. This is useful if you want to hide certain elements (for example, sidebar) on Portrait orientation.  </p>
<p><strong>HTML 5 and CSS3</strong><br />
iPad supports HTML 5 and CSS3 so you can go crazy with box-shadows, text-shadows, border-radius, multiple backgrounds, video, canvas and geolocation features on your iPad friendly website.  </p>
<p><strong>JavaScript</strong><br />
As with iPhone, Javascript is supported on iPad.  This will enable your iPad friendly website to have web 2.0 features, AJAX, dynamic content, and animation effects.  If you are looking for a good Javascript Framework to use, check out <a href="http://jqtouch.com/">jQTouch</a> which is a jQuery plugin for mobile web development.  </p>
<p><strong>Flash</strong><br />
Neither iPad nor iPhone supports Flash.  And <a href="http://www.apple.com/hotnews/thoughts-on-flash">Steve Jobs has made it pretty clear</a> that he has no intention of supporting Flash in the near future. </p>
<p><strong>Viewport</strong></p>
<pre>&lt;meta name="viewport" content="width=device-width" /&gt;</pre>
<p>Use a constant width for viewport rather than a fixed pixel width.  Similarly, when it comes to layout design, consider Fluid width rather than Fixed width design.</p>
<p><strong>Touch not click</strong><br />
This is something to bear in mind when designing websites for iPad and iPhone.  They are both touch devices and not  point and click, so make sure there is enough padding between links (eg: Navigation items) and buttons are large enough to be <del datetime="2010-05-29T13:13:07+00:00">clicked</del> touched on.   </p>
<p><strong>iPad Friendly Website &ne; Mobile Friendly Website</strong><br />
With iPhone, you can simply redirect to your existing Mobile version of the website for iPhone users, but you can&#8217;t do the same for iPad.   iPad screen resolution is many times bigger than a normal mobile screen, hence, there will be a lot of whitespace when you view a mobile friendly website on an iPad.   For this reason, it is sometimes better to serve the same version of the web friendly website to iPad devices rather than redirecting them to the mobile version of the website which is designed for small screens.  And according to Apple, Safari on iPad is capable of delivering a &#8220;desktop&#8221; web experience.</p>
<p><strong>Preview</strong><br />
If you want to check out how your website would look in iPad without an actual iPad device, open <a href="http://ipadpeek.com/">this Simulator</a> in Safari browser and type in the address of the website you wish to view in the address bar on the iPad image (not the browser address bar).  You can click on the top left corner of the iPad image to switch between Landscape and Portrait mode.  </p>
<p>But if you have got a spare $800, you can <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26ref_%3Dsr%5Fnr%5Fseeall%5F6%26keywords%3Dapple%2520ipad%26qid%3D1275142086%26rh%3Di%253Aaps%252Ck%253Aapple%2520ipad%252Ci%253Aelectronics&#038;tag=eisabainyonet-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957">buy iPad</a><img src="https://www.assoc-amazon.com/e/ir?t=eisabainyonet-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> from Amazon Online Store for the real deal.</p>
<p><strong>Inspiration</strong><br />
As always, Apple has a list of <a href="http://www.apple.com/ipad/ready-for-ipad/">iPad ready websites</a> for your inspiration.   If you are looking for an iPad friendly WordPress Theme, be sure to check out <a href="http://themeforest.net/item/mobility-wordpress-theme-for-web-and-ipad/103273?ref=eisabai" target="_blank">Mobility Wordpress Theme</a> that provides a touch and slide friendly user interface for iPad viewers.</p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/05/30/designing-and-optimising-websites-for-ipad/">Designing and Optimising Websites for iPad</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/06/12/making-a-website-iphone-friendly-using-css/" rel="bookmark" title="June 12, 2009">Making a website iPhone-friendly using CSS</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/01/16/tips-on-building-websites-for-mobile-browsers/" rel="bookmark" title="January 16, 2010">Tips on building websites for mobile browsers</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/10/27/tips-for-iphone-web-app-development/" rel="bookmark" title="October 27, 2009">Tips for iPhone Web App Development</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/08/19/official-press-release-target-tech-savvy-gen-y-customers-with-a-store-locator-for-iphone/" rel="bookmark" title="August 19, 2010">Official Press Release: Target tech-savvy Gen-Y customers with a Store Locator for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/03/26/wordpress-iphone-app-a-step-by-step-user-guide-to-using-wordpress-for-iphone/" rel="bookmark" title="March 26, 2010">WordPress iPhone App &#8211; a step by step user guide to using WordPress for iPhone</a></li>

<li><a href="http://eisabainyo.net/weblog/2007/09/27/10-tips-i-have-learned-from-wds2007-day-1/" rel="bookmark" title="September 27, 2007">10 tips I have learned from WDS2007 &#8211; Day 1</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/11/15/building-mashups-for-the-society-mashup-australia-part-i/" rel="bookmark" title="November 15, 2009">Building mashups for the society (Mashup Australia) &#8211; Part I</a></li>
</ul><!-- Similar Posts took 17.714 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/05/30/designing-and-optimising-websites-for-ipad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Click to copy and open site script</title>
		<link>http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/</link>
		<comments>http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/#comments</comments>
		<pubDate>Sat, 29 May 2010 11:08:08 +0000</pubDate>
		<dc:creator>eisabai</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=1463</guid>
		<description><![CDATA[I needed a script that copies a text (in my case, coupon code) onto clipboard and then open the web address associated with the coupon in a new window for my Coupons for Webmasters page.   For the clipboard copying, I&#8217;m using ZeroClipboard script written by Joseph Huckaby.  ZeroClipboard is a free and [...]<p>Read <a href="http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/">Click to copy and open site script</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/02/20/display-thickbox-on-page-load/" rel="bookmark" title="February 20, 2009">Display thickbox on page load</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/10/how-to-customise-wordpress-admin-login-page/" rel="bookmark" title="May 10, 2010">How to customise WordPress Admin Login page</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/" rel="bookmark" title="June 17, 2010">Clear default text in input boxes on click with jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/27/code-to-embed-google-map-and-street-view/" rel="bookmark" title="April 27, 2009">Code to embed Google Map and Street View</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>
</ul><!-- Similar Posts took 15.411 ms --></div>]]></description>
			<content:encoded><![CDATA[<p>I needed a script that copies a text (in my case, coupon code) onto clipboard and then open the web address associated with the coupon in a new window for my <a href="http://eisabainyo.net/website-templates/coupons-for-webmasters/">Coupons for Webmasters</a> page.   For the clipboard copying, I&#8217;m using <a href="http://code.google.com/p/zeroclipboard/">ZeroClipboard script written by Joseph Huckaby</a>.  ZeroClipboard is a free and open source library that provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie, and a JavaScript interface.  And opening a new window was easier than I thought, with jQuery and a bit of googling.  </p>
<p><strong>HTML Code</strong></p>
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Zero Clipboard Test&lt;/title&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;ZeroClipboard.js&quot;&gt;&lt;/script&gt;
&lt;script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;clipboard.js&quot;&gt;&lt;/script&gt;

&lt;/head&gt;
&lt;body &gt;
&lt;h1&gt;Zero Clipboard Test&lt;/h1&gt;

&lt;div class=&quot;coupon&quot;&gt;
&lt;h3&gt;Hostgator Hosting Coupon&lt;/h3&gt;
&lt;div class=&quot;desc&quot;&gt;20% off all plans for new customers&lt;/div&gt;
&lt;div class=&quot;expiry&quot;&gt;Expiry date: - &lt;/div&gt;
&lt;div class=&quot;coupon-code&quot; rel=&quot;http://eisabainyo.net/view/hostgator&quot;&gt;GREEN&lt;/div&gt;
&lt;div class=&quot;coupon-link&quot;&gt;Click to copy&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;coupon&quot;&gt;
&lt;h3&gt;Godaddy Domain Name Coupon&lt;/h3&gt;
&lt;div class=&quot;desc&quot;&gt;$7.49 for any .COM domain&lt;/div&gt;
&lt;div class=&quot;expiry&quot;&gt;Expiry date: - &lt;/div&gt;
&lt;div class=&quot;coupon-code&quot; rel=&quot;http://eisabainyo.net/view/godaddy&quot;&gt;OYH7&lt;/div&gt;
&lt;div class=&quot;coupon-link&quot;&gt;Click to copy&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;coupon&quot;&gt;
&lt;h3&gt;Website Templates&lt;/h3&gt;
&lt;div class=&quot;desc&quot;&gt;5% off any template (no coupon required)&lt;/div&gt;
&lt;div class=&quot;expiry&quot;&gt;Expiry date: 10 June 2010 &lt;/div&gt;
&lt;div class=&quot;coupon-link&quot;&gt;&lt;a href=&quot;http://eisabainyo.net/website-templates&quot; target=&quot;_blank&quot;&gt;Go to site&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>ZeroClipboard Script </strong>(<a href="http://code.google.com/p/zeroclipboard/">download at Google Code</a>)<br />
You&#8217;ll need ZeroClipboard.js and ZeroClipboard.swf.  </p>
<p><strong>clipboard.js</strong></p>
<pre>
ZeroClipboard.setMoviePath("http://fullpath.to.your.site/ZeroClipboard.swf");

var clip = null;
var url = '';

function init() {
	clip = new ZeroClipboard.Client();
	clip.setHandCursor( true );

	$('.coupon-code').mouseover( function() {
		clip.setText(this.innerHTML);
		if (clip.div) {
			clip.receiveEvent('mouseout', null);
			clip.reposition(this);
		} else {
                        clip.glue(this);
                }
		clip.receiveEvent('mouseover', null);
		url = $(this).attr('rel');
	});

	clip.addEventListener('mouseUp', function(client) {
		window.open(url);
	});
}

$(document).ready(function() {
	init();
});
</pre>
<p>See the code in action at <a href="http://eisabainyo.net/website-templates/coupons-for-webmasters/">Coupons for Webmasters</a>. <a href="http://www.retailmenot.com/">RetailMeNot</a> is also using a similar script to achieve the same result.  </p>
<p>Read <a href="http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/">Click to copy and open site script</a> on Web Development Blog!</p><div><h3>Other similiar posts that you might be interested in:</h3><ul><li><a href="http://eisabainyo.net/weblog/2009/02/20/display-thickbox-on-page-load/" rel="bookmark" title="February 20, 2009">Display thickbox on page load</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/07/23/customising-recaptcha-theme/" rel="bookmark" title="July 23, 2009">Customising reCAPTCHA Theme</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/05/10/how-to-customise-wordpress-admin-login-page/" rel="bookmark" title="May 10, 2010">How to customise WordPress Admin Login page</a></li>

<li><a href="http://eisabainyo.net/weblog/2010/06/17/clear-default-text-in-input-boxes-on-click-with-jquery/" rel="bookmark" title="June 17, 2010">Clear default text in input boxes on click with jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/02/20/store-login-information-in-cookie-using-jquery/" rel="bookmark" title="February 20, 2009">Store login information in cookie using jQuery</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/04/27/code-to-embed-google-map-and-street-view/" rel="bookmark" title="April 27, 2009">Code to embed Google Map and Street View</a></li>

<li><a href="http://eisabainyo.net/weblog/2009/08/28/framebar-like-diggbar-example-in-html-and-css-with-no-javascript/" rel="bookmark" title="August 28, 2009">Framebar (like diggbar) example in html and css with no javascript</a></li>
</ul><!-- Similar Posts took 10.557 ms --></div>]]></content:encoded>
			<wfw:commentRss>http://eisabainyo.net/weblog/2010/05/29/click-to-copy-and-open-site-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
