<?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 Designer Online &#187; Development</title>
	<atom:link href="http://www.webdesigneronline.co.uk/category/development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdesigneronline.co.uk</link>
	<description>Web Designer Online</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:40:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Some useful Magento template code snippets</title>
		<link>http://www.webdesigneronline.co.uk/some-useful-magento-template-code-snippets</link>
		<comments>http://www.webdesigneronline.co.uk/some-useful-magento-template-code-snippets#comments</comments>
		<pubDate>Sat, 17 Jul 2010 00:33:22 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=576</guid>
		<description><![CDATA[Over the last 2 month, I’ve built a few Magento sites during which I’ve had certain requests to add some basic extras to the site template – basic it may sound however if you have even a little experience with Magento, you’ll be aware of its complexity.
Product Reviews and Review form in a tab
1. Add [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fsome-useful-magento-template-code-snippets"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fsome-useful-magento-template-code-snippets" height="61" width="51" /></a></div><p>Over the last 2 month, I’ve built a few Magento sites during which I’ve had certain requests to add some basic extras to the site template – basic it may sound however if you have even a little experience with Magento, you’ll be aware of its complexity.</p>
<h2>Product Reviews and Review form in a tab</h2>
<p><strong>1. Add the following:</strong></p>
<div class="codesnip-container" >&lt;catalog_product_view&gt;<br />
&lt;reference name=&#8221;product.info.tabs&#8221;&gt;<br />
&lt;block type=&#8221;review/form&#8221; name=&#8221;product.review.form&#8221;  as=&#8221;review_form&#8221;/&gt;<br />
&lt;action method=&#8221;addTab&#8221; translate=&#8221;title&#8221; module=&#8221;review&#8221;&gt;<br />
&lt;alias&gt;avis&lt;/alias&gt;<br />
&lt;title&gt;Avis / commentaires&lt;/title&gt;<br />
&lt;block&gt;review/product_view_list&lt;/block&gt;<br />
&lt;template&gt;review/product/view/list.phtml&lt;/template&gt;<br />
&lt;/action&gt;<br />
&lt;/reference&gt;</div>
<p><strong>2. Add</strong></p>
<div class="codesnip-container" >&lt;?php<br />
layout = Mage::getSingleton(&#8217;core/layout&#8217;);<br />
$block = $layout-&gt;getBlock(&#8217;content&#8217;)-&gt;getChild(&#8217;product.info&#8217;)-&gt;getChild(&#8217;info_tabs&#8217;)-&gt;getChild(&#8217;review_form&#8217;);<br />
echo $block-&gt;toHtml();<br />
?&gt;</div>
<p>to <em>app/design/frontend/[your_theme]/template/review/product/list.phtml</em></p>
<p><strong>Note: For the above to work, your theme should already be using product tabs (Many tutorials are available online if you don’t have tabs)</strong></p>
<p><em>Source: <a href="http://www.magentocommerce.com/boards/viewthread/31712/">http://www.magentocommerce.com/boards/viewthread/31712/</a></em></p>
<h2>Show Sub-Categories (as images with text) on Category or product Pages (and sort by name)</h2>
<p>If a category contains both products and further sub-categories, then this code can be used so such a category shows both products and sub-categories.</p>
<p>Add the following:</p>
<div class="codesnip-container" >&lt;?php<br />
function sortCategories($a, $b) {<br />
return strcmp($a['name'], $b['name']);<br />
}<br />
?&gt;<br />
&lt;?php<br />
$obj = new Mage_Catalog_Block_Navigation();<br />
$cat = Mage::getModel(&#8217;catalog/category&#8217;)-&gt;load($obj-&gt;getCurrentCategory()-&gt;getId()); //get current cat<br />
$subcats = $cat-&gt;getChildren(); // Get sub cats<br />
// loop on it<br />
if ($subcats) { ?&gt;<br />
&lt;h2 class=&#8221;catptitle&#8221;&gt;Sub-categories&lt;/h2&gt;<br />
&lt;?php }<br />
$categoryArray = array();<br />
foreach(explode(&#8217;,',$subcats) as $subCatid){ // split up the mage data for use<br />
$_category = Mage::getModel(&#8217;catalog/category&#8217;)-&gt;load($subCatid);<br />
if($_category-&gt;getIsActive()){<br />
$caturl  = $_category-&gt;getURL(); // get link to image<br />
$catname = $_category-&gt;getName(); // get the name<br />
$catdesc = $_category-&gt;getDescription(); // get the name<br />
if($_category-&gt;getImageUrl()){<br />
$catimg = $_category-&gt;getImageUrl(); // hey, we got image<br />
}else{<br />
$catimg=null;<br />
continue;<br />
} // this is the basic testing data, format as desired &amp; good luck!<br />
$catdescTwo = substr(strip_tags($catdesc), 0, 70);<br />
$categoryArray[] = array(<br />
&#8216;name&#8217; =&gt; $catname,<br />
&#8216;url&#8217; =&gt; $caturl,<br />
&#8216;desc&#8217; =&gt; $catdescTwo,<br />
&#8216;img&#8217; =&gt; $catimg<br />
);<br />
}<br />
}<br />
usort($categoryArray, &#8220;sortCategories&#8221;);<br />
foreach ($categoryArray as $categoryItem) {<br />
echo &#8216;&lt;a  href=&#8221;&#8216;.$categoryItem['url'].&#8217;&#8221;&gt;&#8217;.$categoryItem['name'].&#8217;&lt;/a&gt;<br />
&lt;a href=&#8221;&#8216;.$categoryItem['url'].&#8217;&#8221;&gt;&lt;img alt=&#8221;" src=&#8221;&#8216;.$categoryItem['img'].&#8217;&#8221; /&gt;&lt;/a&gt;<br />
&#8216;.$categoryItem['desc'].&#8217;&#8230;&#8217;;<br />
}<br />
?&gt;</div>
<p>to <em>app/design/frontend/[your_theme]/template/catalog/category/list.phtml</em></p>
<p><strong>OR</strong> <em>app/design/frontend/[your_theme]/template/catalog/product/list.phtml</em></p>
<h2>Display RSS Feed items</h2>
<p><strong>Step 1</strong></p>
<p>Create a file called latest_news.phtml in <em>app/design/frontend/default/[your_theme]/template/callouts/latest_news.phtml</em> with the following:</p>
<div class="codesnip-container" >&lt;?php $channel = new Zend_Feed_Rss(&#8217;INSERT FEED URL&#8217;); ?&gt;<br />
&lt;div class=&#8221;block block-latest-news&#8221;&gt;<br />
&lt;div class=&#8221;sideBestS&#8221;&gt;<br />
&lt;h2&gt;&lt;?php echo $this-&gt;__(&#8217;Latest News&#8217;) ?&gt;&lt;/h2&gt;<br />
&lt;/div&gt;<br />
&lt;div class=&#8221;block-content&#8221;&gt;<br />
&lt;ol id=&#8221;graybox-latest-news&#8221;&gt;<br />
&lt;?php $i = 0; ?&gt;<br />
&lt;?php foreach ($channel as $item): ?&gt;<br />
&lt;?php if ($i != 3) { ?&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo $item-&gt;link; ?&gt;&#8221;&gt;&lt;?php echo $item-&gt;title; ?&gt;&lt;/a&gt;<br />
&lt;p&gt;&lt;?php echo substr($item-&gt;description,0,179) . &#8220;&#8230;&#8221;; ?&gt;&lt;/p&gt;<br />
&lt;/li&gt;<br />
&lt;?php $i++; ?&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ol&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</div>
<p><strong>Step 2 </strong></p>
<p>Add the following:</p>
<div class="codesnip-container" >&lt;reference name=&#8221;right&#8221;&gt;<br />
&lt;block type=&#8221;core/template&#8221; name=&#8221;top.search&#8221; as=&#8221;topSearch&#8221; template=&#8221;catalogsearch/form.mini.phtml&#8221;/&gt;<br />
&lt;block type=&#8221;core/template&#8221; name=&#8221;right.permanent.callout&#8221; template=&#8221;callouts/right_col.phtml&#8221;/&gt;<br />
&lt;block type=&#8221;core/template&#8221; name=&#8221;right.latest.news&#8221; template=&#8221;callouts/latest_news.phtml&#8221;/&gt;<br />
&lt;/reference&gt;</div>
<p>to <em>app/design/frontend/[your_theme]/layout/page.xml</em></p>
<p><strong>Note:</strong> The above will add the code to the right sidebar – you can reference it elsewhere on the site</p>
<h2>Display a product’s “quantity in stock” on your Product Pages</h2>
<div class="codesnip-container" >&lt;?php $stock_count = (int) Mage::getModel(&#8217;cataloginventory/stock_item&#8217;)-&gt;loadByProduct($this-&gt;getProduct())-&gt;getQty(); ?&gt;</div>
<p>&lt;?php echo $stock_count ?&gt;</p>
<h2>Flush/force DNS (Windows only)</h2>
<p>Many a time, when you change the DNS records and nameservers of a domain to point to the new site, it can take up to 72 hours to propagate over the internet. Unfortunately sometimes, the client/customer/general users may see the new site before the developer and if there are any issues then the developer won’t be able to fix them until they can see the new site. Previously i used to wait like anybody else however recently a colleague showed me a method by which I can force my browser to  view the new site!</p>
<p><strong>Step 1:</strong></p>
<p>Open command promt (search/run &#8220;CMD&#8221; in windows)</p>
<p>In Command promt, type the following:</p>
<p>“ipconfig /flushdns”</p>
<p><a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/80f1e14d9fad_0/image.png"><img class="wlDisabledImage" style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/80f1e14d9fad_0/image_thumb.png" border="0" alt="image" width="694" height="218" /></a></p>
<p><strong>Step 2</strong></p>
<p>Go to the folder:</p>
<p>%SystemRoot%\system32\drivers\etc\</p>
<p>For windows 7, %SystemRoot% is C:\Windows\</p>
<p>For windows XP, it may be a little different.</p>
<p>Inside the folder “etc” is a file named – “hosts”. Open this with Notepad and add the line</p>
<p>xx.xxx.xxx.xx <a href="http://www.YOUR-DOMAIN.co.uk">www.YOUR-DOMAIN.co.uk</a></p>
<p>At the bottom of the file (where xx.xxx.xxx.xx is the ip address of the new host)</p>
<p>Then you will have to clear your browser cache.</p>
<h2>Ecommerce tracking in Magento Using Google Analytics</h2>
<p>This one is simple.</p>
<p>Go to System &gt; Configuration &gt; Google API and insert you analytics ID.</p>
<p><strong>Then</strong></p>
<ul>
<li>login to Google analytics</li>
<li>Select the account for your site</li>
<li>Click edit</li>
<li>on “Main Website Profile Information”, click edit</li>
<li>tick the radio button “Yes, an E-Commerce site”</li>
</ul>
<h2>Site search tracking in Magento Using Google Analytics</h2>
<ul>
<li>login to Google analytics</li>
<li>Select the account for your site</li>
<li>Click edit</li>
<li>on “Main Website Profile Information”, click edit</li>
<li>tick the radio button “Do Track Site Search”</li>
<li>insert the letter “q” in the input box</li>
</ul>
<h2>Display PHTML files in Dreamweaver</h2>
<p><a title="http://www.dreamweaverclub.com/dreamweaver-phtml-inc.php" rel="nofollow" href="http://www.dreamweaverclub.com/dreamweaver-phtml-inc.php" target="_blank">http://www.dreamweaverclub.com/dreamweaver-phtml-inc.php</a></p>
<h2>Conclusion</h2>
<p>Is there anything else you would like to do with Magento? leave a note below and I&#8217;ll see what i can do!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/some-useful-magento-template-code-snippets/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 great Alternatives to phpMyAdmin</title>
		<link>http://www.webdesigneronline.co.uk/10-great-alternatives-to-phpmyadmin</link>
		<comments>http://www.webdesigneronline.co.uk/10-great-alternatives-to-phpmyadmin#comments</comments>
		<pubDate>Sat, 10 Oct 2009 15:32:29 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=469</guid>
		<description><![CDATA[Most people in the web development world are under the impression that phpMyAdmin is the only MySQL client out there for websites. Going a step further, some users are aware of alternative however assume that phpMyAdmin is the best.
Now, I agree that phpMyAdmin is one of the best out there and is is very user [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-great-alternatives-to-phpmyadmin"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-great-alternatives-to-phpmyadmin" height="61" width="51" /></a></div><p>Most people in the web development world are under the impression that <a rel="nofollow" href="http://www.phpmyadmin.net/home_page/index.php" target="_blank">phpMyAdmin</a> is the only <a rel="nofollow" href="http://www.mysql.com/" target="_blank">MySQL</a> client out there for websites. Going a step further, some users are aware of alternative however assume that phpMyAdmin is the best.</p>
<p>Now, I agree that phpMyAdmin is one of the best out there and is is very user friendly. I myself also used phpMyAdmin much until recently&#8230; I got introduced to another program which within an hour became my favourite and also this led me to research others out there. Thus, this post!</p>
<h2>10 great Alternatives to phpMyAdmin</h2>
<p><a class="external-site-link" rel="nofollow" href="http://www.adminer.org/en/" target="_blank"><strong>Adminer</strong></a> <em>(formerly phpMinAdmin)</em></p>
<p>A full-featured MySQL management tool written in PHP. Does more or less everything phpMyAdmin however consist of a single file only that is ready to upload to your servers and connect to the DB.</p>
<p><a rel="nofollow" href="http://www.adminer.org/en/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image.png" border="0" alt="image" width="552" height="367" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.navicat.com/en/index.html" target="_blank"><strong>Navicat</strong></a></p>
<p>This, in my opinion, is the best MySQL client out there. It does everything you want from a very user friendly interface. However, it doesn’t come free. There is a small price tag to it but is well worth it!</p>
<p><a rel="nofollow" href="http://www.navicat.com/en/index.html" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_3.png" border="0" alt="image" width="552" height="316" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.sequelpro.com/" target="_blank"><strong>Sequel Pro</strong></a></p>
<p>One for the Mac users.</p>
<p><a rel="nofollow" href="http://www.sequelpro.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_4.png" border="0" alt="image" width="552" height="295" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.nerocode.com/" target="_blank"><strong>SQLWave</strong></a></p>
<p><a rel="nofollow" href="http://www.nerocode.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_5.png" border="0" alt="image" width="552" height="284" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.webyog.com/en/sqlyog_feature_list.php" target="_blank"><strong>SQLyog</strong></a></p>
<p><a rel="nofollow" href="http://www.webyog.com/en/sqlyog_feature_list.php" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_6.png" border="0" alt="image" width="552" height="300" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://bluesql.com/" target="_blank"><strong>BlueSQL</strong></a></p>
<p>Free web based DB management tool.</p>
<p><a rel="nofollow" href="http://bluesql.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_7.png" border="0" alt="image" width="552" height="304" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://sqlbuddy.com/" target="_blank"><strong>SQL Buddy</strong></a></p>
<p><a rel="nofollow" href="http://sqlbuddy.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_8.png" border="0" alt="image" width="552" height="369" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.fabforce.net/dbdesigner4/" target="_blank"><strong>DBDesigner 4</strong></a></p>
<p><a rel="nofollow" href="http://www.fabforce.net/dbdesigner4/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_9.png" border="0" alt="image" width="552" height="309" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.sqlgate.com/product/product_detail.html?gubun=my" target="_blank"><strong>SQLGate</strong></a></p>
<p><a rel="nofollow" href="http://www.sqlgate.com/product/product_detail.html?gubun=my" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_10.png" border="0" alt="image" width="552" height="270" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.heidisql.com/" target="_blank"><strong>HeidiSQL</strong></a></p>
<p><a rel="nofollow" href="http://www.heidisql.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_11.png" border="0" alt="image" width="552" height="348" /></a></p>
<h2>Conclusion</h2>
<p>Navicat and Adminer are probably the only other MySQL Clients you need in addition to phpMyAdmin. The rest? I’ll leave them to you to discover which is best suited to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/10-great-alternatives-to-phpmyadmin/feed</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>10 Advance MooTools Scripts to Outshine your Industry</title>
		<link>http://www.webdesigneronline.co.uk/10-advance-mootools-scripts-to-outshine-your-industry</link>
		<comments>http://www.webdesigneronline.co.uk/10-advance-mootools-scripts-to-outshine-your-industry#comments</comments>
		<pubDate>Tue, 04 Aug 2009 19:18:53 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=279</guid>
		<description><![CDATA[Following my previous JavaScript article on jQuery &#8211; 10 Advance jQuery Scripts to take Your Website to the Next Level &#8211; Where I showcased some awesome jQuery scripts, I thought it good to do the same with MooTools.
I could have called this post &#8220;50 Advance MooTools Scripts&#8221; but kept it at 10 as otherwise you [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-advance-mootools-scripts-to-outshine-your-industry"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-advance-mootools-scripts-to-outshine-your-industry" height="61" width="51" /></a></div><p>Following my previous JavaScript article on jQuery &#8211; <a href="http://www.webdesigneronline.co.uk/10-advance-jquery-scripts-to-take-your-website-to-the-next-level">10 Advance jQuery Scripts to take Your Website to the Next Level</a> &#8211; Where I showcased some awesome jQuery scripts, I thought it good to do the same with MooTools.</p>
<p>I could have called this post &#8220;50 Advance MooTools Scripts&#8221; but kept it at 10 as otherwise you would lose interest and many of the scripts would have been useless. Thus, 10 is the special number today!</p>
<h2>MooTools</h2>
<p><img src="/wp-content/uploads/2009/08/7-0.png" alt="" /></p>
<blockquote><p>MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API.</p></blockquote>
<p>Similar to jQuery, MooTools is another very popular JavaScript framework to help do more with less code. I have selected some awesome MooTools script you can use to help outshine the your industry!</p>
<h2>Advanced Mootools</h2>
<p><a class="external-site-link" rel="nofollow" href="http://www.electricprism.com/aeron/calendar/" target="_blank"><strong>Calendar (to input dates)</strong></a></p>
<p>A cool looking calendar by which you can easily select dates.</p>
<ul>
<li>Style-able and semantic XHTML</li>
<li>Highly configurable use of inputs and selects</li>
<li>Future/past restrictions</li>
<li>Multi Calendar Support</li>
<li>And much more!</li>
</ul>
<p><img src="/wp-content/uploads/2009/08/7-1.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.electricprism.com/aeron/calendar/" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://www.piksite.com/mParallax/" target="_blank"><strong>mParallax</strong></a></p>
<p><strong>SIMPLY AMAZING.</strong></p>
<blockquote><p>Turn&#8217;s a selected element into a &#8216;window&#8217;, or viewport, and all its children into absolutely positioned layers that can be seen through the viewport. These layers move in response to the mouse, and, depending on their dimensions (and options for layer initialisation), they move by different amounts, in a parallaxy kind of way</p></blockquote>
<p><img src="/wp-content/uploads/2009/08/7-2.png" alt="" /><br />
Complicated, I know&#8230; See the effect in action and you&#8217;ll understand in a second!</p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.piksite.com/mParallax/" target="_blank">Homepage</a> (inc. Demo&#8217;s, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://digitarald.de/project/fancyupload/" target="_blank"><strong>FancyUpload</strong></a><br />
<img src="/wp-content/uploads/2009/08/7-3.png" alt="" /><br />
An elegant upload script:</p>
<blockquote><p>FancyUpload is a file-input replacement which features an unobtrusive, multiple-file selection menu and queued upload with an <strong>animated progress bar</strong>. It is easy to setup, is server independent, <strong>completely styleable </strong>(is that a word?) via CSS and XHTML and uses MooTools to work in all modern browsers</p></blockquote>
<p><img src="/wp-content/uploads/2009/08/7-4.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://digitarald.de/project/fancyupload/" target="_blank">Homepage</a> (inc. Demo&#8217;s, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://lipidity.com/fancy-form/" target="_blank"><strong>FancyForm</strong></a></p>
<p>Not your standard checkbox.</p>
<p><img src="/wp-content/uploads/2009/08/7-5.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://lipidity.com/fancy-form/" target="_blank">Homepage</a> (inc. Demo&#8217;s, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://www.andrewplummer.com/code/tablegear/" target="_blank"><strong>TableGear</strong></a></p>
<p>Just click any field and start editing it. As soon as you move away from the field, it regains all of its formatting.</p>
<ul>
<li>Designed for PHP/MySQL. (Works with other also)</li>
<li>Degradable to work without JavaScript</li>
<li>Very customisable</li>
</ul>
<p><img src="/wp-content/uploads/2009/08/7-6.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.andrewplummer.com/code/tablegear/" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://www.andrewplummer.com/demos/tablegear/" target="_blank">Demo</a></div>
<p><a class="external-site-link" rel="nofollow" href="http://greengeckodesign.com/?q=mooscroll" target="_blank"><strong>MooScroll</strong></a></p>
<p>Customise scroll bars beyond your imagination. Strictly for the Geek only&#8230;</p>
<p><img src="/wp-content/uploads/2009/08/7-7.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://greengeckodesign.com/?q=mooscroll" target="_blank">Homepage</a> (inc. Demo&#8217;s, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://greengeckodesign.com/?q=menumatic" target="_blank"><strong>MenuMatic</strong></a></p>
<p>Nice horizontal/vertical menu effect.</p>
<p><img src="/wp-content/uploads/2009/08/7-8.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://greengeckodesign.com/?q=menumatic" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://greengeckodesign.com/projects/menumatic/examples/horizontal/" target="_blank">Demo 1</a>(Horizontal) | <a rel="nofollow" href="http://greengeckodesign.com/projects/menumatic/examples/vertical/" target="_blank"> Demo 2</a> (Vertical)</div>
<p><a class="external-site-link" rel="nofollow" href="http://www.hellowhirled.com/mootools/" target="_blank"><strong>Slider with Range Indicator</strong></a></p>
<p>Select a maximum and minimum value using a slider. You can customise the look how you like!</p>
<p><img src="/wp-content/uploads/2009/08/7-9.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.hellowhirled.com/mootools/" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://www.phatfusion.net/imagemenu/" target="_blank"><strong>Horizontal Image Menu</strong></a></p>
<p>Very nice! (With quite a few options!)</p>
<p><img src="/wp-content/uploads/2009/08/7-10.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.phatfusion.net/imagemenu/" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<p><a class="external-site-link" rel="nofollow" href="http://www.rborn.info/blog/kroppr-image-cropping-script/" target="_blank"><strong>Kroppr &#8211; image cropping script</strong></a></p>
<p>Impress all your users with this fine script. An image cropping tool that is able to rotate, zoom and move the image in the real time without using plugin&#8217;s &#8211; such as flash or java.</p>
<p>It&#8217;s very simple to implement also!</p>
<p><img src="/wp-content/uploads/2009/08/7-11.jpg" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.rborn.info/blog/kroppr-image-cropping-script/" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<h2>Conclusion</h2>
<p>Who said jQuery was the only JavaScript library that&#8217;s cool. MooTools can be cool too!</p>
<p>If I was asked to recommend one above the other, I wouldn&#8217;t give a definite answer. It all depends on what your requirements are. Thereafter, you need to research both scripts and see which would be best for you in the long term!</p>
<h2>Useful Links</h2>
<div class="exampleLinks">
<ul style="padding-top:20px;">
<li><a rel="nofollow" href="http://www.mootools.net/" target="_blank">Official MooTools homepage</a></li>
<li><a rel="nofollow" href="http://www.smashingmagazine.com/2009/07/28/mootools-tutorials-and-resources-round-up/" target="_blank">MooTools Tutorials and Resources Round-Up</a></li>
<li><a rel="nofollow" href="http://www.amazon.com/MooTools-Essentials-JavaScript-Development-Firstpress/dp/1430209836" target="_blank">Official MooTools Book</a></li>
<li><a rel="nofollow" href="http://snook.ca/archives/javascript/mootools_r83_cheatsheet/" target="_blank">MooTools Cheatsheet</a></li>
<li><a rel="nofollow" href="http://twitter.com/Mootools" target="_blank">MooTools on Twitter!</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/10-advance-mootools-scripts-to-outshine-your-industry/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 Advance jQuery Scripts to take Your Website to the Next Level</title>
		<link>http://www.webdesigneronline.co.uk/10-advance-jquery-scripts-to-take-your-website-to-the-next-level</link>
		<comments>http://www.webdesigneronline.co.uk/10-advance-jquery-scripts-to-take-your-website-to-the-next-level#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:55:16 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=102</guid>
		<description><![CDATA[Before 2008, there were only a handful (compared to now) of sites which were of a very high level of quality and stunningly unique; standing out from the rest.  It was in 2008 when many tools and frameworks became more popular and widely used amongst the masses. This included CSS based design and everyone’s [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-advance-jquery-scripts-to-take-your-website-to-the-next-level"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-advance-jquery-scripts-to-take-your-website-to-the-next-level" height="61" width="51" /></a></div><p>Before 2008, there were only a handful (compared to now) of sites which were of a very high level of quality and stunningly unique; standing out from the rest.  It was in 2008 when many tools and frameworks became more popular and widely used amongst the masses. This included CSS based design and everyone’s favourite – Wordpress!  Due to this, today, every half decent web designer has a stunning website. You’re probably wondering what I’m getting at? To make your website standout from the rest, you need to take your website to the next level.  In this post, I’m going to showcase many Advanced jQuery techniques to add that extra touch to your site.</p>
<h2>Advanced jQuery</h2>
<p>Below are a list of sites that offer some amazing jQuery script by which you can achieve some stunning effect for your site.  I have given a brief introduction to each effect with a link to the original site direct download.</p>
<p><strong><a rel="nofollow" href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank">AJAX Fancy Captcha</a></strong></p>
<p>Taking Captcha&#8217;s to the next level! A new, intuitive drag and drop captcha:</p>
<p><img style="border: 0px initial initial;" title="Ajax Fancy Captcha 1" src="/wp-content/uploads/2009/07/3-1.png" alt="" width="332" height="126" /><br />
<img style="border: 0px initial initial;" title="Ajax Fancy Capcha 1" src="/wp-content/uploads/2009/07/3-2.png" alt="" width="332" height="126" /></p>
<p>Here we&#8217;re asked to <em>drag </em>the pencil into the circle! Neat!</p>
<p><strong>Note:</strong> According to the producers, this Captcha’s security level is <strong>medium</strong>.</p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<p><strong><a rel="nofollow" href="http://malsup.com/jquery/cycle/adv.html">jQuery Cycle</a> &#8211; Custom <em>Incoming</em>/<em>Outgoing</em> Transitions</strong></p>
<p>Cool image transitions that were once possible in Flash only.  This powerful script has room for lots of customisation to all you to fine grain your transition over speed and easing in/out transitions.</p>
<div class="exampleLinks"><a rel="nofollow" href="http://malsup.com/jquery/cycle/adv.html" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<p><strong><a rel="nofollow" href="http://web-kreation.com/demos/Sliding_login_panel_jquery/" target="_blank">Cool jQuery Sliding Panel</a></strong></p>
<p><strong><a rel="nofollow" href="http://web-kreation.com/demos/Sliding_login_panel_jquery/" target="_blank"></a></strong> I really like this effect (might implement it here in the future!).</p>
<p><img style="border: 0px initial initial;" title="Ajax Fancy Captcha 1" src="/wp-content/uploads/2009/07/3-3.png" alt="" /></p>
<p><img style="border: 0px initial initial;" title="Ajax Fancy Captcha 1" src="/wp-content/uploads/2009/07/3-4.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://web-kreation.com/index.php/wordpress/implement-a-nice-clean-jquery-sliding-panel-in-wordpress-27/" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://web-kreation.com/demos/Sliding_login_panel_jquery/" target="_blank">Demo</a> | <a style="text-decoration: none;" rel="nofollow" href="http://web-kreation.com/index.php/wordpress/implement-a-nice-clean-jquery-sliding-panel-in-wordpress-27/" target="_blank">Tutorial for Wordpress 2.7+</a></div>
<p><strong><a rel="nofollow" href="http://www.flowplayer.org/tools/scrollable.html" target="_blank">jQuery Scrollable</a></strong></p>
<p><strong><a rel="nofollow" href="http://www.flowplayer.org/tools/scrollable.html" target="_blank"></a></strong> A very nice/smooth script which you can implement to a div.</p>
<p><strong>This script can be used for</strong></p>
<ul>
<li>Image Galleries</li>
<li>Products</li>
<li>Navigation</li>
<li>Anything else!</li>
</ul>
<p><strong> Some features:</strong></p>
<ul>
<li>Horizontal/Vertical</li>
<li>Can Scroll using navigational buttons, API calls, keyboard arrow keys, and the mouse scroll wheel.</li>
<li>Ability to make your own effects</li>
<li>and lots of other stuff! <em>See <a rel="nofollow" href="http://www.flowplayer.org/tools/scrollable.html" target="_blank">script homepage</a> for script</em></li>
</ul>
<div class="exampleLinks"><a rel="nofollow" href="http://www.flowplayer.org/tools/scrollable.html" target="_blank">Homepage</a> (inc. Demo, Download)</div>
<p><strong><a rel="nofollow" href="http://www.newmediacampaigns.com/page/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours" target="_blank">jQuery Filterable Portfolio</a></strong></p>
<p>An awesome effect for portfolios and just showcasing your work!</p>
<p><img src="/wp-content/uploads/2009/07/3-5.gif" alt="" /></p>
<p>Here you click the tabs above the images and jQuery performs a cool transition to filter out the required category!</p>
<div class="exampleLinks"><a rel="nofollow" href="http://www.newmediacampaigns.com/page/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://www.newmediacampaigns.com/section/portfolio">Demo</a></div>
<p><strong><a rel="nofollow" href="http://benjaminsterling.com/portolio-layout-idea-using-jquery/" target="_blank">Animated Portfolio</a></strong></p>
<p>A Nice Effect!</p>
<div class="exampleLinks"><a rel="nofollow" href="http://benjaminsterling.com/portolio-layout-idea-using-jquery/" target="_blank">Homepage </a>(inc. Download) | <a rel="nofollow" href="http://www.benjaminsterling.com/wp-content/files/porfolio1/" target="_blank">Demo</a></div>
<p><a rel="nofollow" href="http://benjaminsterling.com/password-strength-indicator-and-generator/" target="_blank"><strong>Password Strength Meter</strong></a></p>
<p>A customisable password strength meter to show how secure your password is.</p>
<p>With a bit of tweaking, you should be able to implement it with your registration forms. I&#8217;m sure the download contains all the instructions.</p>
<p><img src="/wp-content/uploads/2009/07/3-6.png" alt="" /></p>
<p><img src="/wp-content/uploads/2009/07/3-7.png" alt="" /></p>
<p><strong>Note:</strong> Images can be changed!</p>
<div class="exampleLinks"><a rel="nofollow" href="http://benjaminsterling.com/password-strength-indicator-and-generator/" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://benjaminsterling.com/wp-content/files/passwordstrength.htm" target="_blank">Demo</a></div>
<p><a rel="nofollow" href="http://benjaminsterling.com/slide-in-tab-window-using-jquery/" target="_blank"><strong>jQuery Slide-In Tab</strong></a></p>
<p>Again from the same site as the above two. This is similar to an accordion effect however horizontal from the edge of the screen.</p>
<p><img style="border: 0px initial initial;" src="/wp-content/uploads/2009/07/3-8.png" alt="" /></p>
<p><img style="border: 0px initial initial;" src="/wp-content/uploads/2009/07/3-9.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://benjaminsterling.com/slide-in-tab-window-using-jquery/" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://www.benjaminsterling.com/wp-content/files/sidetab.htm" target="_blank">Demo</a></div>
<p><a rel="nofollow" href="http://designshack.co.uk/articles/navigation/creating-a-jquery-dashboard?sitereferring=blarnee.com" target="_blank"><strong>JQuery Dashboard</strong></a></p>
<p>Like the one found on a Mac.</p>
<div class="exampleLinks"><a rel="nofollow" href="http://designshack.co.uk/articles/navigation/creating-a-jquery-dashboard?sitereferring=blarnee.com" target="_blank">Homepage</a> (inc. Download, Full tutorial) | <a rel="nofollow" href="http://designshack.co.uk/tutorialexamples/dashboard/" target="_blank">Demo</a></div>
<p><a rel="nofollow" href="http://yensdesign.com/2008/12/create-a-smooth-tabbed-menu-in-jquery/" target="_blank"><strong>Smooth Tabbed Menu</strong></a></p>
<p>Smooooth!</p>
<p><img style="border: 0px initial initial;" src="/wp-content/uploads/2009/07/3-10.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://yensdesign.com/2008/12/create-a-smooth-tabbed-menu-in-jquery/" target="_blank">Homepage</a> (inc. Download) | <a rel="nofollow" href="http://yensdesign.com/tutorials/tabs/" target="_blank">Demo</a></div>
<p><strong>BONUS &#8211; </strong><a rel="nofollow" href="http://fmarcia.info/jquery/tetris/tetris.html" target="_blank"><strong>jQuery Tetris</strong></a><strong>!!!</strong></p>
<p>WIN!</p>
<p><img style="border: 0px initial initial;" src="/wp-content/uploads/2009/07/3-11.png" alt="" /></p>
<div class="exampleLinks"><a rel="nofollow" href="http://fmarcia.info/jquery/tetris/tetris.js" target="_blank">Source Code</a></div>
<h2>Conclusion</h2>
<p>You need to initially impress your users within a very short amount of time and one of the methods to achieve this is to use jQuery. By adopting some of the uses above backed up by some inspiration on your side, you can be sure that many of your users will return.</p>
<p><strong>Important Note!</strong> All of the above methods are the foundation upon which a strong structure can be built. Use it to your advantage. With some tweaking and CSS, you can take much more out of them. For a freelancer. it&#8217;s very important.</p>
<p>If you&#8217;re not in the web design/development industry, then using even the most basic jQuery will more than likely impress your visitors! (<em>It&#8217;s alright for some!</em>)</p>
<h2>Useful Links</h2>
<div class="exampleLinks">
<ul style="padding-top:20px;">
<li><a rel="nofollow" href="http://jquery.com/" target="_blank">Official jQuery homepage</a></li>
<li><a rel="nofollow" href="http://net.tutsplus.com/articles/web-roundups/jquery-for-absolute-beginners-video-series/" target="_blank">jQuery for Absolute Beginners: The Complete Series</a></li>
<li><a rel="nofollow" href="http://www.webdesignerwall.com/tutorials/jquery-tutorials-for-designers/" target="_blank">jQuery tutorials for designers</a></li>
<li><a rel="nofollow" href="http://www.queness.com/post/126/useful-and-handy-jquery-tips-and-tricks" target="_blank">Useful and Handy jQuery Tips and Tricks</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/10-advance-jquery-scripts-to-take-your-website-to-the-next-level/feed</wfw:commentRss>
		<slash:comments>48</slash:comments>
		</item>
	</channel>
</rss>
