※ Visual Studio 2013 빌드시 C4996 오류 발생 error C4996: 'inet_addr': Use inet_pton() or InetPton() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings.. 빌드시 위와 같은 오류가 난다면 SDL검사를 해제하면 정상빌드 된다. 프로잭트 > 속성 > C/C++ > 일반 > SDL검사 > [아니요] Project properties > Configuration Properties > C/C++ > General > SDL checks > No [작성자] devbible.tistory.com
jQuery.fn.center = function () { this.css("position","absolute"); this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) + $(window).scrollTop()) + "px"); this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 2) + $(window).scrollLeft()) + "px"); return this; } function open(layerId){ $("#"+layerId).show(); $("#"+layerId).center();//fn }
- Total
- Today
- Yesterday