Thursday, September 3, 2009

Multi Tabbed Navigation Widget For Blogger

13 comments 9/03/2009
Sign up to receive our site updates!

New Updated Widget here

Simple jQuery Multi Tabbed Navigation Widget For Blogger


Multi Tabbed Widget is cool and must widget for every blogger.You might have seen this widget on so many blogs(See Sidebar of my blog).



Coz of it's unbeaten features,
1.Easy to navigate through your blog.
2.Efficient use of space.
3.Reduces the load time.
4.Fun to use.

You find several methods on multiple blogs to add this widget to your blog.But the problem is u can't find the widget like "Add a Widget" style in Blogger>Layout>Page Elements Page.



This way is very useful to add blogger Default widgets.

Here the solution How to add the Multi Tabbed Widget like This.
Originally Developed by Barelyfitz and Bloggerized by TechTasks

First Download the Template

Step 1:Login to Blogger dashboard--> layout- -> Edit HTML

Find(CTRL+F) ]]></b:skin> tag.

Now copy and paste below code just before ]]></b:skin> this.



/*--------Start::Tabber Widget By www.techtasks.blogspot.com -----------*/




#tabsidebar-wrapper{
width: 320px; /* size of the tabbed Sidebar */
float: right;
border: 1px none #000000;
}
.tabberlive .tabbertabhide {display:none;}
.tabber {display:none;}
.tabberlive {margin-top:1em;}
.tabber h2 {
border-bottom:0px solid #000000;
margin-bottom: .3em;
padding: 0;
line-height:1.2em;
}
.tabber .widget {margin-bottom: 1em;}
.tabber .widget-content {margin: 0 0px;}
ul.tabbernav{
margin:0;
padding: 8px 0;
border-bottom: 4px solid #0080FF; /Tab Menu and Content separator color */
}
ul.tabbernav li{
list-style: none;
margin: 0;
display: inline;
}
ul.tabbernav li a{
padding: 8px 0.5em;
margin-right:2px;
border: 2px solid #000000; /* tab Border color */
border-bottom: none;
background: #4A4A4A; /* Tab menu background color */
text-decoration: none;
}
ul.tabbernav li a:link { color:#ffffff;}
ul.tabbernav li a:visited {
color: #ffffff;
background: #0080FF; /* tab Visited color */
border-bottom: none;
}
ul.tabbernav li a:hover{
color:#ffffff; /* tab Mouse over text color */
background: #0080FF; /* tab mouse over background color */
border-color: #000000;
}


ul.tabbernav li.tabberactive a{
background-color: #0080FF; /* visited tab background color */
color: #ffffff; /* visited tab text color */
border-bottom: 1px solid #0080FF;
}
ul.tabbernav li.tabberactive a:hover{
color: #ffffff; /* visited tab Mouse over text color */
background: #0080FF; /* visited tab Mouse over background color */
}
.tabberlive .tabbertab {
background: #ffffff; /*tab content background color */
padding:5px;
border:3px solid #000000; /*tab content border color */
border-top:0;
}
.tabberlive .tabbertab h2 {display:none;}
.tabberlive .tabbertab h3 {display:none;}


/*--------End::Tabber Widget By www.techtasks.blogspot.com -----------*/




If you want customize the Tabbed Widget colors just Follow the comments to Change the colors

Simply replace these colors with your custom colors in the above code respectively.

#0080FF(light blue) Tab menu Highlight Color
#4A4A4A(Dark color) tab menu Background color


Step 2:Find </head> .

Cope and paste the below just before </head> this.



<script type='text/javascript'>

/*==================================================
$Id: tabber.js,v 1.9 2006/04/27 20:51:51 pat Exp $
tabber.js by Patrick Fitzgerald pat@barelyfitz.com

Documentation can be found at the following URL:
http://www.barelyfitz.com/projects/tabber/

License (http://www.opensource.org/licenses/mit-license.php)

Copyright (c) 2006 Patrick Fitzgerald

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the &quot;Software&quot;), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==================================================*/

function tabberObj(argsObj)
{
var arg; /* name of an argument to override */

/* Element for the main tabber div. If you supply this in argsObj,
then the init() method will be called.
*/
this.div = null;

/* Class of the main tabber div */
this.classMain = &quot;tabber&quot;;

/* Rename classMain to classMainLive after tabifying
(so a different style can be applied)
*/
this.classMainLive = &quot;tabberlive&quot;;

/* Class of each DIV that contains a tab */
this.classTab = &quot;tabbertab&quot;;

/* Class to indicate which tab should be active on startup */
this.classTabDefault = &quot;tabbertabdefault&quot;;

/* Class for the navigation UL */
this.classNav = &quot;tabbernav&quot;;

/* When a tab is to be hidden, instead of setting display=&#39;none&#39;, we
set the class of the div to classTabHide. In your screen
stylesheet you should set classTabHide to display:none. In your
print stylesheet you should set display:block to ensure that all
the information is printed.
*/
this.classTabHide = &quot;tabbertabhide&quot;;

/* Class to set the navigation LI when the tab is active, so you can
use a different style on the active tab.
*/
this.classNavActive = &quot;tabberactive&quot;;

/* Elements that might contain the title for the tab, only used if a
title is not specified in the TITLE attribute of DIV classTab.
*/
this.titleElements = [&#39;h2&#39;,&#39;h3&#39;,&#39;h4&#39;,&#39;h5&#39;,&#39;h6&#39;];

/* Should we strip out the HTML from the innerHTML of the title elements?
This should usually be true.
*/
this.titleElementsStripHTML = true;

/* If the user specified the tab names using a TITLE attribute on
the DIV, then the browser will display a tooltip whenever the
mouse is over the DIV. To prevent this tooltip, we can remove the
TITLE attribute after getting the tab name.
*/
this.removeTitle = true;

/* If you want to add an id to each link set this to true */
this.addLinkId = false;

/* If addIds==true, then you can set a format for the ids.
&lt;tabberid&gt; will be replaced with the id of the main tabber div.
&lt;tabnumberzero&gt; will be replaced with the tab number
(tab numbers starting at zero)
&lt;tabnumberone&gt; will be replaced with the tab number
(tab numbers starting at one)
&lt;tabtitle&gt; will be replaced by the tab title
(with all non-alphanumeric characters removed)
*/
this.linkIdFormat = &#39;&lt;tabberid&gt;nav&lt;tabnumberone&gt;&#39;;

/* You can override the defaults listed above by passing in an object:
var mytab = new tabber({property:value,property:value});
*/
for (arg in argsObj) { this[arg] = argsObj[arg]; }

/* Create regular expressions for the class names; Note: if you
change the class names after a new object is created you must
also change these regular expressions.
*/
this.REclassMain = new RegExp(&#39;\\b&#39; + this.classMain + &#39;\\b&#39;, &#39;gi&#39;);
this.REclassMainLive = new RegExp(&#39;\\b&#39; + this.classMainLive + &#39;\\b&#39;, &#39;gi&#39;);
this.REclassTab = new RegExp(&#39;\\b&#39; + this.classTab + &#39;\\b&#39;, &#39;gi&#39;);
this.REclassTabDefault = new RegExp(&#39;\\b&#39; + this.classTabDefault + &#39;\\b&#39;, &#39;gi&#39;);
this.REclassTabHide = new RegExp(&#39;\\b&#39; + this.classTabHide + &#39;\\b&#39;, &#39;gi&#39;);

/* Array of objects holding info about each tab */
this.tabs = new Array();

/* If the main tabber div was specified, call init() now */
if (this.div) {

this.init(this.div);

/* We don&#39;t need the main div anymore, and to prevent a memory leak
in IE, we must remove the circular reference between the div
and the tabber object. */
this.div = null;
}
}


/*--------------------------------------------------
Methods for tabberObj
--------------------------------------------------*/


tabberObj.prototype.init = function(e)
{
/* Set up the tabber interface.

e = element (the main containing div)

Example:
init(document.getElementById(&#39;mytabberdiv&#39;))
*/

var
childNodes, /* child nodes of the tabber div */
i, i2, /* loop indices */
t, /* object to store info about a single tab */
defaultTab=0, /* which tab to select by default */
DOM_ul, /* tabbernav list */
DOM_li, /* tabbernav list item */
DOM_a, /* tabbernav link */
aId, /* A unique id for DOM_a */
headingElement; /* searching for text to use in the tab */

/* Verify that the browser supports DOM scripting */
if (!document.getElementsByTagName) { return false; }

/* If the main DIV has an ID then save it. */
if (e.id) {
this.id = e.id;
}

/* Clear the tabs array (but it should normally be empty) */
this.tabs.length = 0;

/* Loop through an array of all the child nodes within our tabber element. */
childNodes = e.childNodes;
for(i=0; i &lt; childNodes.length; i++) {

/* Find the nodes where class=&quot;tabbertab&quot; */
if(childNodes[i].className &amp;&amp;
childNodes[i].className.match(this.REclassTab)) {

/* Create a new object to save info about this tab */
t = new Object();

/* Save a pointer to the div for this tab */
t.div = childNodes[i];

/* Add the new object to the array of tabs */
this.tabs[this.tabs.length] = t;

/* If the class name contains classTabDefault,
then select this tab by default.
*/
if (childNodes[i].className.match(this.REclassTabDefault)) {
defaultTab = this.tabs.length-1;
}
}
}

/* Create a new UL list to hold the tab headings */
DOM_ul = document.createElement(&quot;ul&quot;);
DOM_ul.className = this.classNav;

/* Loop through each tab we found */
for (i=0; i &lt; this.tabs.length; i++) {

t = this.tabs[i];

/* Get the label to use for this tab:
From the title attribute on the DIV,
Or from one of the this.titleElements[] elements,
Or use an automatically generated number.
*/
t.headingText = t.div.title;

/* Remove the title attribute to prevent a tooltip from appearing */
if (this.removeTitle) { t.div.title = &#39;&#39;; }

if (!t.headingText) {

/* Title was not defined in the title of the DIV,
So try to get the title from an element within the DIV.
Go through the list of elements in this.titleElements
(typically heading elements [&#39;h2&#39;,&#39;h3&#39;,&#39;h4&#39;])
*/
for (i2=0; i2&lt;this.titleElements.length; i2++) {
headingElement = t.div.getElementsByTagName(this.titleElements[i2])[0];
if (headingElement) {
t.headingText = headingElement.innerHTML;
if (this.titleElementsStripHTML) {
t.headingText.replace(/&lt;br&gt;/gi,&quot; &quot;);
t.headingText = t.headingText.replace(/&lt;[^&gt;]+&gt;/g,&quot;&quot;);
}
break;
}
}
}

if (!t.headingText) {
/* Title was not found (or is blank) so automatically generate a
number for the tab.
*/
t.headingText = i + 1;
}

/* Create a list element for the tab */
DOM_li = document.createElement(&quot;li&quot;);

/* Save a reference to this list item so we can later change it to
the &quot;active&quot; class */
t.li = DOM_li;

/* Create a link to activate the tab */
DOM_a = document.createElement(&quot;a&quot;);
DOM_a.appendChild(document.createTextNode(t.headingText));
DOM_a.href = &quot;javascript:void(null);&quot;;
DOM_a.title = t.headingText;
DOM_a.onclick = this.navClick;

/* Add some properties to the link so we can identify which tab
was clicked. Later the navClick method will need this.
*/
DOM_a.tabber = this;
DOM_a.tabberIndex = i;

/* Do we need to add an id to DOM_a? */
if (this.addLinkId &amp;&amp; this.linkIdFormat) {

/* Determine the id name */
aId = this.linkIdFormat;
aId = aId.replace(/&lt;tabberid&gt;/gi, this.id);
aId = aId.replace(/&lt;tabnumberzero&gt;/gi, i);
aId = aId.replace(/&lt;tabnumberone&gt;/gi, i+1);
aId = aId.replace(/&lt;tabtitle&gt;/gi, t.headingText.replace(/[^a-zA-Z0-9\-]/gi, &#39;&#39;));

DOM_a.id = aId;
}

/* Add the link to the list element */
DOM_li.appendChild(DOM_a);

/* Add the list element to the list */
DOM_ul.appendChild(DOM_li);
}

/* Add the UL list to the beginning of the tabber div */
e.insertBefore(DOM_ul, e.firstChild);

/* Make the tabber div &quot;live&quot; so different CSS can be applied */
e.className = e.className.replace(this.REclassMain, this.classMainLive);

/* Activate the default tab, and do not call the onclick handler */
this.tabShow(defaultTab);

/* If the user specified an onLoad function, call it now. */
if (typeof this.onLoad == &#39;function&#39;) {
this.onLoad({tabber:this});
}

return this;
};


tabberObj.prototype.navClick = function(event)
{
/* This method should only be called by the onClick event of an &lt;A&gt;
element, in which case we will determine which tab was clicked by
examining a property that we previously attached to the &lt;A&gt;
element.

Since this was triggered from an onClick event, the variable
&quot;this&quot; refers to the &lt;A&gt; element that triggered the onClick
event (and not to the tabberObj).

When tabberObj was initialized, we added some extra properties
to the &lt;A&gt; element, for the purpose of retrieving them now. Get
the tabberObj object, plus the tab number that was clicked.
*/

var
rVal, /* Return value from the user onclick function */
a, /* element that triggered the onclick event */
self, /* the tabber object */
tabberIndex, /* index of the tab that triggered the event */
onClickArgs; /* args to send the onclick function */

a = this;
if (!a.tabber) { return false; }

self = a.tabber;
tabberIndex = a.tabberIndex;

/* Remove focus from the link because it looks ugly.
I don&#39;t know if this is a good idea...
*/
a.blur();

/* If the user specified an onClick function, call it now.
If the function returns false then do not continue.
*/
if (typeof self.onClick == &#39;function&#39;) {

onClickArgs = {&#39;tabber&#39;:self, &#39;index&#39;:tabberIndex, &#39;event&#39;:event};

/* IE uses a different way to access the event object */
if (!event) { onClickArgs.event = window.event; }

rVal = self.onClick(onClickArgs);
if (rVal === false) { return false; }
}

self.tabShow(tabberIndex);

return false;
};


tabberObj.prototype.tabHideAll = function()
{
var i; /* counter */

/* Hide all tabs and make all navigation links inactive */
for (i = 0; i &lt; this.tabs.length; i++) {
this.tabHide(i);
}
};


tabberObj.prototype.tabHide = function(tabberIndex)
{
var div;

if (!this.tabs[tabberIndex]) { return false; }

/* Hide a single tab and make its navigation link inactive */
div = this.tabs[tabberIndex].div;

/* Hide the tab contents by adding classTabHide to the div */
if (!div.className.match(this.REclassTabHide)) {
div.className += &#39; &#39; + this.classTabHide;
}
this.navClearActive(tabberIndex);

return this;
};


tabberObj.prototype.tabShow = function(tabberIndex)
{
/* Show the tabberIndex tab and hide all the other tabs */

var div;

if (!this.tabs[tabberIndex]) { return false; }

/* Hide all the tabs first */
this.tabHideAll();

/* Get the div that holds this tab */
div = this.tabs[tabberIndex].div;

/* Remove classTabHide from the div */
div.className = div.className.replace(this.REclassTabHide, &#39;&#39;);

/* Mark this tab navigation link as &quot;active&quot; */
this.navSetActive(tabberIndex);

/* If the user specified an onTabDisplay function, call it now. */
if (typeof this.onTabDisplay == &#39;function&#39;) {
this.onTabDisplay({&#39;tabber&#39;:this, &#39;index&#39;:tabberIndex});
}

return this;
};

tabberObj.prototype.navSetActive = function(tabberIndex)
{
/* Note: this method does *not* enforce the rule
that only one nav item can be active at a time.
*/

/* Set classNavActive for the navigation list item */
this.tabs[tabberIndex].li.className = this.classNavActive;

return this;
};


tabberObj.prototype.navClearActive = function(tabberIndex)
{
/* Note: this method does *not* enforce the rule
that one nav should always be active.
*/

/* Remove classNavActive from the navigation list item */
this.tabs[tabberIndex].li.className = &#39;&#39;;

return this;
};


/*==================================================*/


function tabberAutomatic(tabberArgs)
{
/* This function finds all DIV elements in the document where
class=tabber.classMain, then converts them to use the tabber
interface.

tabberArgs = an object to send to &quot;new tabber()&quot;
*/
var
tempObj, /* Temporary tabber object */
divs, /* Array of all divs on the page */
i; /* Loop index */

if (!tabberArgs) { tabberArgs = {}; }

/* Create a tabber object so we can get the value of classMain */
tempObj = new tabberObj(tabberArgs);

/* Find all DIV elements in the document that have class=tabber */

/* First get an array of all DIV elements and loop through them */
divs = document.getElementsByTagName(&quot;div&quot;);
for (i=0; i &lt; divs.length; i++) {

/* Is this DIV the correct class? */
if (divs[i].className &amp;&amp;
divs[i].className.match(tempObj.REclassMain)) {

/* Now tabify the DIV */
tabberArgs.div = divs[i];
divs[i].tabber = new tabberObj(tabberArgs);
}
}

return this;
}


/*==================================================*/


function tabberAutomaticOnLoad(tabberArgs)
{
/* This function adds tabberAutomatic to the window.onload event,
so it will run after the document has finished loading.
*/
var oldOnLoad;

if (!tabberArgs) { tabberArgs = {}; }

/* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */

oldOnLoad = window.onload;
if (typeof window.onload != &#39;function&#39;) {
window.onload = function() {
tabberAutomatic(tabberArgs);
};
} else {
window.onload = function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
}


/*==================================================*/


/* Run tabberAutomaticOnload() unless the &quot;manualStartup&quot; option was specified */

if (typeof tabberOptions == &#39;undefined&#39;) {

tabberAutomaticOnLoad();

} else {

if (!tabberOptions[&#39;manualStartup&#39;]) {
tabberAutomaticOnLoad(tabberOptions);
}

}

</script>



Step 3:Find <div id='sidebar-wrapper'> or <div id='sidebar'>

If u can't find above code don't bother about that,Coz template designers are developed different ways.Just find the starting <Div> of Sidebar


Now copy and paste below code just below that.



<div id='tabsidebar-wrapper'>
<div class='tabber' id='tab1'>
<div class='tabbertab'>
<b:section class='sidebar' id='tabbertab1' maxwidgets='1' showaddelement='yes'>

</b:section>
</div>
<div class='tabbertab'>
<b:section class='sidebar' id='tabbertab2' maxwidgets='1' showaddelement='yes'>

</b:section>
</div>
<div class='tabbertab'>
<b:section class='sidebar' id='tabbertab3' maxwidgets='1' showaddelement='yes'>

</b:section>
</div>
</div></div><!-- End the tabsidebar-wrapper-->



step 4:Save the Template.


Then Go to your page Elements Page and add the widgets for your tabs one by one.

Feel Free to ask any queries about this...
Your Ad Here

13 comments:

Jolanthe on March 27, 2010 at 10:55 PM said... [Reply]

I would love to ask you a question about the last html coding section. I didn't have any problem finding the first too, but the new coding on my blog {using some of the new templates in blogger draft} is much harder to read and I can't find where it is located.

Katie on March 28, 2010 at 11:15 AM said... [Reply]

Okay...this seems simple...but ugh.

I first had my layout with my sidebar on the left...couldn't figure out why your tool kept showing up on the right. I finally changed my background to reflect my sidebar on the right. I get it on...and then when I view the blog, I see the tabs...when I go into my navbar to move things into the tabs, it isn't there...What is the deal?!??!?! HELP!!!

katiemurphy2@gmail.com

Liz on November 21, 2010 at 5:38 AM said... [Reply]

Hi...I can't find the coding for the third one as well. I found it on one of my blogs just fine (www.bethecheese.blogspot.com) but not on my new one (www.lil-LIZ-bits.com). Any help would be very much appreciated.

Oh, I found your site via (www.confessionsofahomeschooler.blogspot.com)

Thanks in advance!

lilizbit3033@yahoo.com

Resa on January 7, 2011 at 1:22 AM said... [Reply]

I've got mine up, but can find no place to edit and add my widgets! I can see the box on my live blog, but it is not visible in page elements. Can you help? Thanks! resa_eastwood@yahoo.com www.resaruth.blogspot.com

Rajesh on January 9, 2011 at 12:42 AM said... [Reply]

@Resa
Actually it's not showing at Page Elements Sections..

For this
1.First add Widgets any ware in Page Elements Section

2.Go to Edit Html And find the Added widgets (based on title)

3.Cut And Copy those Widgets in Tabbed Widget Section as follows

<b:section class='bottombox' id='bottombox_1' preferred='yes'>
<b:widget id='HTML5' locked='false' title='Recent Posts' type='HTML'/>
</b:section>

i Think it's Help U....

gRos on January 10, 2011 at 8:46 PM said... [Reply]

Hello Rejesh,
I'm about to set up a blog using Wordpress. Would you happen to have this same program compatible with Wordpress? Thanks for your help.

gRos

Rajesh on January 13, 2011 at 11:37 AM said... [Reply]

@gRos
It's not compatible to Word Press
in WordPress u find plugins for this

Anonymous said... [Reply]

Hi,

Thanks for the great tips really appreciated it.

1 problem, i'm having difficulty to add code in step 3. could u help me please. my test blog add http://dadummy.blogspot.com/

thanks in advance for your help.

Rajesh on March 21, 2011 at 8:46 PM said... [Reply]

@Anonymous
First instead of This Widget use this Updated widget http://www.techtasks.net/2011/01/simple-jquery-multi-tabbed-navigation.html

Then Step 3:
in your case u need to find this Div ...
<div class='art-sidebar2 section' id='sidebar2'>

Ravinder on May 12, 2011 at 10:32 PM said... [Reply]

Dear sir.,
How to change the headings in this widget...by default these are 1,2,3

Rajesh on May 22, 2011 at 11:54 AM said... [Reply]

@Ravinder MehtaIf u can add any blogger widgets to that the widget titles replaces the no's
To add widgets follow the instructions Click Here

Sara on June 27, 2011 at 10:05 PM said... [Reply]

I'm looking for further help with step 3. If someone could offer more assistance regarding where I need to insert the code for that step, it would be appreciated!

http://mostlyorganizedchaos.blogspot.com/

Anonymous said... [Reply]

Hey there! I'm at work browsing your blog from my new iphone!
Just wanted to say I love reading your blog and look forward to all your posts!
Carry on the great work!

Respects for your's Questions & Opinions

  • Friends
  •  

    Recent Posts

    Copyright 2008 All Rights Reserved Tech Tasks Template by Rajesh Kumar Chekuri