Troy Thompson

Web Developer

Archive for the ‘jquery’ Tag

  1. Easy Collapsible FAQ with jQuery

    Published
    Last Updated
    Nov 11 2008
    Tagged
    Content

    Simple FAQ with collapsible answers using jQuery.
    (more...)

  2. 99 Boxes

    Published
    Tagged
    Content

    I used to have this game called 99 Boxes on my Palm, and a month go I felt like recreating it in jQuery for fun.
    I don't know who the original creator was, but this is the game.

    (more...)

  3. Collapsible Nested ULs with jQuery

    Published
    Tagged
    Content

    This is a quick demo showing one how to expand and collapse menus of unlimited depth with jQuery.

    (more...)

  4. Remove Link Outlines with CSS and jQuery

    Published
    Tagged
    Content
    1. Add a on click event to the links to blur them.
      $('#nav a').click(function(){$(this).blur(); });
    2. Add outline none to CSS
      #nav a { outline:none; }
    3. Profit

    Note: Adding CSS "outline:none;" to links will make it impossible for keyboard only users to navigate the site, be sure to offer an alternative.