function FontPlus() {
        var str = document.getElementById('바꿀div의 id');
        var nSize = str.style.fontSize  ? str.style.fontSize  : '9pt';
        var iSize = parseInt(nSize.replace('pt',''));
   
if (iSize < 11) {
        str.style.fontSize  = (iSize + 1) + 'pt';
       str.style.lineHeight = '140%';
        }else{
            alert("더 이상 확대할 수 없습니다.");       
        }
    }


    function FontMinus()
    {
        var str = document.getElementById('마찬가지..');
        var nSize = str.style.fontSize ? str.style.fontSize : '9pt';
        var iSize = parseInt(nSize.replace('pt',''));

        if (iSize > 7){
            str.style.fontSize = (iSize - 1) + 'pt';
            str.style.lineHeight = '140%';
        }else{
            alert("더 이상 축소할 수 없습니다.");       
        }
    } 

글 보관함

카운터

Total : / Today : / Yesterday :
get rsstistory!