skip to main | skip to sidebar

Demo for Gee Blogger.org

Demo and Examples of widgets and themes and etc for Gee Blogger.org

Home Menu Item 1 Menu Item 2 Menu Item 3
  • Home
  • Tutorials
    • Sub Nav Link
    • Sub Nav Link
  • Resources
    • Sub Nav Link
    • Sub Nav Link
  • About Us
  • Advertise
  • Submit
  • Contact Us

jQuery Menu in Blogger

  • Home
  • CSS Examples
    • Activities 1
    • Activities 2
    • Activities 3
      • Water Sports 1
      • Water Sports 1
      • Water Sports 1
      • Water Sports 1
    • Activities 4
  • Tools
  • JavaScript
    • Traveling 1
    • Traveling 2
    • Traveling 3
    • Traveling 4
      • Africa 1
      • Africa 2
      • Africa 3
      • Africa 4
        • Kenya 1
        • Kenya 2
        • Kenya 3
        • Kenya 4
        • Kenya 5
    • Traveling 5
  • Gallery

Example 1

  • Item 1
  • Folder 0
    • Sub Item 1.1
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
  • Folder 1
    • Sub Item 1.1
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
  • Item 3
  • Folder 2
    • Sub Item 2.1
    • Folder 2.1
      • Sub Item 2.1.1
      • Sub Item 2.1.2
      • Folder 3.1.1
        • Sub Item 3.1.1.1
        • Sub Item 3.1.1.2
        • Sub Item 3.1.1.3
        • Sub Item 3.1.1.4
        • Sub Item 3.1.1.5
      • Sub Item 2.1.4
  • Item 4

Example 2

  • Item 1
  • Folder 0
    • Sub Item 1.1
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
  • Folder 1
    • Sub Item 1.1
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
    • Sub Item 1.2
    • Sub Item 1.3
    • Sub Item 1.4
  • Item 3
  • Folder 2
    • Sub Item 2.1
    • Folder 2.1
      • Sub Item 2.1.1
      • Sub Item 2.1.2
      • Folder 3.1.1
        • Sub Item 3.1.1.1
        • Sub Item 3.1.1.2
        • Sub Item 3.1.1.3
        • Sub Item 3.1.1.4
        • Sub Item 3.1.1.5
      • Sub Item 2.1.4
  • Item 4

CSS horizontal Menu

  • Home
  • Free JS
  • JS Tutorials
  • References
    • JS Reference
    • DOM Reference
    • CSS Reference
  • web Tutorials
  • Resources
    • Dynamic HTML
    • Coding Forums
    • CSS Drive
    • CSS Library
    • Image Optimizer
    • Favicon Generator

Rest of content here

CSS Vertical List Menu

  • JavaScript Kit
  • Free JavaScripts
  • JavaScript Tutorials
  • References
    • JavaScript Reference
    • DOM Reference
    • CSS Reference
  • DHTML/ CSS Tutorials
  • web Design Tutorials
  • Helpful Resources
    • Dynamic HTML
    • Coding Forums
    • CSS Drive
    • CSS Library
    • Image Optimizer
    • Favicon Generator

Thursday, December 17, 2009

Demo For Blogger Hacks and this is propriety of Geek Blogger.org

Demo For Blogger Hacks and this is propriety of Geek Blogger.org
Posted by Piyush Dungrani at 6:47 AM 1 comments
Home
Subscribe to: Posts (Atom)

Followers

Blog Archive

  • ▼  2009 (1)
    • ▼  December (1)
      • Demo For Blogger Hacks and this is propriety of Ge...

About Me

My Photo
Piyush Dungrani
Piyush Dungrani is a QA Engineer by profession and tech enthusiast from Ahmedabad (Gujarat-India), who always wants to explore and share interesting tips, tricks, blogger hacks, blogspot, SEO, webmaster guides, google adsense and Web 2.0 tips. He is a founder of Geek Blogger, a very popular technology blog.
View my complete profile
 
$(document).ready(function(){ $("ul.subnav").parent().append(""); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*) $("ul.topnav li span").click(function() { //When trigger is clicked... //Following events are applied to the subnav itself (moving subnav up and down) $(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click $(this).parent().hover(function() { }, function(){ $(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up }); //Following events are applied to the trigger (Hover events for the trigger) }).hover(function() { $(this).addClass("subhover"); //On hover over, add class "subhover" }, function(){ //On Hover Out $(this).removeClass("subhover"); //On hover out, remove class "subhover" }); });