$(document).ready(function(){ $("#floatshow").bind("click",function(){ $('#onlineservice').animate({width: 'show', opacity: 'show'}, 'normal',function(){ $('#onlineservice').show(); });$('#floatshow').attr('style','display:none');$('#floathide').attr('style','display:block'); return false; }); $("#floathide").bind("click",function(){ $('#onlineservice').animate({width: 'hide', opacity: 'hide'}, 'normal',function(){ $('#onlineservice').hide(); });$('#floatshow').attr('style','display:block');$('#floathide').attr('style','display:none'); }); $(document).bind("click",function(event){ if ($(event.target).ischildof("#online_qq_layer") == false) { $('#onlineservice').animate({width: 'hide', opacity: 'hide'}, 'normal',function(){ $('#onlineservice').hide(); });$('#floatshow').attr('style','display:block');$('#floathide').attr('style','display:none'); } }); $(".online_bar").click(function(){ $(".online_bar").removeclass("expand").addclass("collapse") $(this).removeclass("collapse").addclass("expand") }) jquery.fn.ischildandselfof = function(b){ return (this.closest(b).length > 0); }; jquery.fn.ischildof = function(b){ return (this.parents(b).length > 0); }; });