1. 마우스 오른쪽 버튼 클릭 메뉴 비활성화
$ (document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
} );
2. 글꼴을 플래시로 만듭니다.
jQuery.fn.flash = function( color, Duration )
{
var current = this.css( 'color' )
this .animate( { color: 'rgb(' color ')' }, 기간 / 2 )
this.animate( { color: current }, 기간 / 2 )
}
$( '# someid' ).flash( '255,0 ,0', 1000 );
3. 문서 교체 계획 준비
$(function(){
//document is Ready do Something
}) ;
4. 브라우저 감지
// Safari
if( $.browser.safari )
{
//뭔가
}
//IE6 이상
if ($.browser.msie && $.browser.version > 6 )
{
//뭔가
}
// IE6 이하
if ($.browser.msie && $.browser.version <= 6 ) { //뭔가를 하세요 } // Firefox 2 이상 if ($.browser.mozilla && $.browser.version >= "1.8" )
{
//작업 수행
}
5. 기존 요소 확인
if ($("#someDiv").length) {
//예, 그렇습니다.
}