$('input[type=text].tel_box').attr({'maxlength':'4'}).css('imeMode','disabled').keypress(function(event) {
if(event.which && (event.which < 48 || event.which > 57) ) {
event.preventDefault();
}
}).keyup(function(){
if( $(this).val() != null && $(this).val() != '' ) {
$(this).val( $(this).val().replace(/[^0-9]/g, '') );
}
});
'Web Progreming' 카테고리의 다른 글
[ ETC ] 네이버 모바일 슬라이딩 효과 참고 사이트 (0) | 2013.04.11 |
---|---|
[ CSS ] CSS Selectors (0) | 2013.04.08 |
정규표현식 영어, 영어-숫자, 영어-숫자-밑줄-하이픈 (0) | 2013.02.20 |
[ MySQL ] DB 삭제 및 사용자 삭제 (0) | 2013.02.13 |
[ MySQL ] 덤프(dump) ,복원(Restore) (0) | 2012.12.24 |