<?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>Ajax Updates &#187; active tags</title>
	<atom:link href="http://www.ajaxupdates.com/tag/active-tags/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxupdates.com</link>
	<description>Latest Ajax Scripts, Examples, News and other Ajax related stuff</description>
	<lastBuildDate>Fri, 12 Feb 2010 12:46:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sliding Tabs using Mootools</title>
		<link>http://www.ajaxupdates.com/sliding-tabs-using-mootools/</link>
		<comments>http://www.ajaxupdates.com/sliding-tabs-using-mootools/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:19:13 +0000</pubDate>
		<dc:creator>alyaspk</dc:creator>
				<category><![CDATA[Ajax Scripts]]></category>
		<category><![CDATA[Ajax Tabs]]></category>
		<category><![CDATA[active tags]]></category>
		<category><![CDATA[animate tags]]></category>
		<category><![CDATA[button tags]]></category>
		<category><![CDATA[carousel tags]]></category>
		<category><![CDATA[Div Tags]]></category>
		<category><![CDATA[element tags]]></category>
		<category><![CDATA[java tags]]></category>
		<category><![CDATA[lighting tags]]></category>
		<category><![CDATA[slide tags]]></category>
		<category><![CDATA[sliding tabs]]></category>

		<guid isPermaLink="false">http://www.ajaxupdates.com/?p=2040</guid>
		<description><![CDATA[Sliding Tabs is a mootools 1.11 plugin which adds a pretty neat effect. It’s a clone of something seen on Panic Software’s Coda site, which in turn was very similar to a widget used in the iTunes Music Store.
Documentation
Firstly, the ‘constructor’:
var slidingtabs = new SlidingTabs(buttons, panes, options);
So here the first parameter is buttons, for this [...]


Related Listings:<ol><li><a href='http://www.ajaxupdates.com/fancy-sliding-tabs-menu/' rel='bookmark' title='Permanent Link: Fancy Sliding Tabs Menu'>Fancy Sliding Tabs Menu</a> <small>The Fancy Sliding Tab Menu is back and better than...</small></li>
<li><a href='http://www.ajaxupdates.com/ajax-standard-tabs-module/' rel='bookmark' title='Permanent Link: Ajax Standard Tabs Module'>Ajax Standard Tabs Module</a> <small>The Standard Tab widget provides standard features for a tab...</small></li>
<li><a href='http://www.ajaxupdates.com/ajax-tab-module-closeable-implementation/' rel='bookmark' title='Permanent Link: AJAX Tab Module &#8211; Closeable Implementation'>AJAX Tab Module &#8211; Closeable Implementation</a> <small>The Closeable Tab widget allows tabs to be removed. (related...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sliding Tabs is a mootools 1.11 plugin which adds a pretty neat effect. It’s a clone of something seen on Panic Software’s Coda site, which in turn was very similar to a widget used in the iTunes Music Store.</p>
<p><strong>Documentation</strong></p>
<p>Firstly, the ‘constructor’:</p>
<pre class="brush: javascript">var slidingtabs = new SlidingTabs(buttons, panes, options);</pre>
<p>So here the first parameter is buttons, for this you want to give an element whose children are to become buttons. This element should have as many children as you plan to have panes.</p>
<p>Then we have the panes parameter. For this you’ll need to provide a div, containing another div, which then in turn contains your panes. Check out the demo to see what I mean. You’ll want to give the outer div a width using css. Style it however you like. Please do not style the inner div, it is used by the script.</p>
<p>Then we have options. You can skip this parameter if you like, you only need the first two, but if you do want to customize things a bit you’ll use a javscript hash to set things here. A javascript hash looks like this { option1: “setting”, nextOption: 123 } etc. So here are the options you can set:–</p>
<p>• startingSlide: the pane which is displayed when the page first loads, either an id, or the element itself<br />
• activeButtonClass: the class you’d like to see applied to your buttons when they are the currently selected one. It defaults to ‘active’.<br />
• activationEvent: this is the event on a button which will trigger the panes to change. It defaults to ‘click’, but you could use ‘mouseover’ or something similar.<br />
• wrap: When using the previous and next methods and this is set to true, the next method goes back to the first pane when it gets to the end and vice-versa. Defaults to true.<br />
• slideEffect: This can be set as another hash, it sends extra options like duration and transition in to Fx.Slide. Take a look at the mootools docs for more info on this.<br />
• animateHeight: Should the height of the whole widget grow shorter and longer to fit the panes? By default this is on (true), when set to false the widget will always be as tall as the tallest pane. If you don’t need this on, it might make things more responsive on older systems to avoid the extra animation functions by turning it off.<br />
• rightOversized: Takes a number of pixels (defaults to zero) of the immediate next pane to show to the right of the currently selected pane. It effectively makes all the panes less wide, while leaving the viewable area at the size you’ve given through CSS. Demo.</p>
<p>Once you’ve created the plugin object, you can also call a few methods on it. These are changeTo, next, previous, and recalcWidths. Next and previous are pretty straight forward, you could hook up buttons to run these if you’d like. changeTo takes one parameter, which is the pane you want to switch to. If you like you can give your panes id’s, then you can do slidingTabs.changeTo(&#8216;id-of-pane&#8217;); to do stuff like link from one pane to another and surely many more fun things. The pane can be specified as an Element object, a one based Number, or an ID string. An optional second parameter controls if the change is animated or not with a boolean value. recalcWidths takes no parameters, and as shown in the demo, can be connected with window’s ‘resize’ event to get sliding tabs to work in fluid layouts where its width changes when the page is resized. </p>
<p>Demo: <a href="http://creativepony.com/demos/sliding-tabs/">http://creativepony.com/demos/sliding-tabs/</a><br />
Download: <a href="http://creativepony.com/mint/pepper/orderedlist/downloads/download.php?file=http%3A//creativepony.com/scripts/sliding-tabs.js">http://creativepony.com/mint/pepper/orderedlist/downloads/download.php?file=http%3A//creativepony.com/scripts/sliding-tabs.js</a><br />
Source: <a href="http://creativepony.com/journal/scripts/sliding-tabs/">http://creativepony.com/journal/scripts/sliding-tabs/</a></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fwww.ajaxupdates.com%2Fsliding-tabs-using-mootools%2F', 'Sliding+Tabs+using+Mootools')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fwww.ajaxupdates.com%2Fsliding-tabs-using-mootools%2F', title: '+Sliding+Tabs+using+Mootools+' })"/></div>

<p>Related Listings:<ol><li><a href='http://www.ajaxupdates.com/fancy-sliding-tabs-menu/' rel='bookmark' title='Permanent Link: Fancy Sliding Tabs Menu'>Fancy Sliding Tabs Menu</a> <small>The Fancy Sliding Tab Menu is back and better than...</small></li>
<li><a href='http://www.ajaxupdates.com/ajax-standard-tabs-module/' rel='bookmark' title='Permanent Link: Ajax Standard Tabs Module'>Ajax Standard Tabs Module</a> <small>The Standard Tab widget provides standard features for a tab...</small></li>
<li><a href='http://www.ajaxupdates.com/ajax-tab-module-closeable-implementation/' rel='bookmark' title='Permanent Link: AJAX Tab Module &#8211; Closeable Implementation'>AJAX Tab Module &#8211; Closeable Implementation</a> <small>The Closeable Tab widget allows tabs to be removed. (related...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ajaxupdates.com/sliding-tabs-using-mootools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->