Home

Simple Cisco 851w config

I have had my Cisco 851w for a number of years most of which I used it as an access point. A couple months back I switched ISP's and was able to use it as my router. It had been a very long time since I had configured a Cisco... Read more

tortoise svn 7.1 asking for password on windows 7

Last week I updated to tortoise svn 7.1 on my desktop. Everything seemed to be working right, but it kept asking for my password every time I connected to a ssh+svn repos even with a connection to the server via pageant (version .60). So I was forced to type in... Read more

CSS double border using box-shadow

Getting a double border with a different color doesn't leave you with may options.You can use border-style: double or outline: 1px solid blue. But I wanted the double border only on one side, so I decided to play around with the box-shadow rule. Check out the jsfiddle below. I'm using... Read more

Overflow menu a jQuery UI Widget

I decided to turn an earlier post idea (See http://jebaird.com/blog/using-jquery-create-overflow-menu-seen-google-wave ) into a jQuery UI widget. Its based on the google wave menu. view the demo GitHub repo What It Does  It detects which menu items are hidden in the parent element overflow. Takes the hidden items clones them and... Read more

HTML5 Canvas Image Randomizer

I wanted to decrease the sizes of my pages on my blog with out changing my design. I had been using css sprites and gziped css + with base64 encoded images but due to my design my page size was 1500k on an empty cache.  My blog was like this... Read more

Trigger all events on an element using jQuery

triggerAll is a simple plugin that will allow you to trigger all the events attached to an element and or collection (function($){ $.fn.triggerAll = function(){ return this.each(function(){ var $this = $(this); $.each($this.data('events'),function( k, v){ $this.trigger( k ); }) }); } })(jQuery);   Read more
  1. Previous
  2. Next