$(
'body' ).click( function (e) { // //ie7 thinks were clicking on nothing when we click on the color picker...$(
'div.picker-on' ).removeClass( 'picker-on' );$(
'#picker' ).remove();$(
'input.focus, select.focus' ).removeClass( 'focus' );
$(
'body').click(function (e) { //if the clicked target belongs to the picker, dont close. var target = $(e.target); var numPickerParents = target.parents(".picker-on").length; if (numPickerParents < 1) { // //ie7 thinks were clicking on nothing when we click on the color picker...$(
'div.picker-on').removeClass('picker-on');$(
'#picker').remove();$(
'input.focus, select.focus').removeClass('focus');}