🏫 TECH
-
안녕하세요. 이사작전.com의 개발자 말랑고양입니다.오늘은 css의 overflow를 사용하지 않고, 스크롤을 제거하는 방법을 공유하려합니다. 12345cs 위와 같은 코드를 넣고 확인해보세요. 감사합니다.reference : https://stackoverflow.com/questions/3296644/hiding-the-scrollbar-on-an-html-page
[CSS] overflow말고 스크롤 제거하기안녕하세요. 이사작전.com의 개발자 말랑고양입니다.오늘은 css의 overflow를 사용하지 않고, 스크롤을 제거하는 방법을 공유하려합니다. 12345cs 위와 같은 코드를 넣고 확인해보세요. 감사합니다.reference : https://stackoverflow.com/questions/3296644/hiding-the-scrollbar-on-an-html-page
2017.12.31 -
if (evt.keyCode == 13) { form.submit(); }... and you could just change it toif (evt.keyCode == 13 && !evt.shiftKey) { form.submit(); } reference : https://stackoverflow.com/questions/6014702/how-do-i-detect-shiftenter-and-generate-a-new-line-in-textarea
How do I detect “shift+enter” and generate a new line in Textarea?if (evt.keyCode == 13) { form.submit(); }... and you could just change it toif (evt.keyCode == 13 && !evt.shiftKey) { form.submit(); } reference : https://stackoverflow.com/questions/6014702/how-do-i-detect-shiftenter-and-generate-a-new-line-in-textarea
2017.12.05 -
[bootstrap] How to create a modal scroll~!! JUST DO IT! 12345678/* Important part */.modal-dialog{ overflow-y: auto !important} cs thank you~!#modal #modal #scroll #bootstrapreference : https://stackoverflow.com/questions/25874001/how-to-put-scrollbar-only-for-modal-body-in-bootstrap-modal-dialog
[bootstrap] How to create a modal scroll~!![bootstrap] How to create a modal scroll~!! JUST DO IT! 12345678/* Important part */.modal-dialog{ overflow-y: auto !important} cs thank you~!#modal #modal #scroll #bootstrapreference : https://stackoverflow.com/questions/25874001/how-to-put-scrollbar-only-for-modal-body-in-bootstrap-modal-dialog
2017.11.23 -
요약 : 아애 disabled속성을 제거하면 됩니다. 123 $('#selectTest').removeAttr('disabled'); Colored by Color Scriptercs 사용예시 : 123456789101112131415161718192021222324 New Document 1선택! 2선택! $('#selectTest').removeAttr('disabled'); Colored by Color Scriptercs
[html] select disabled 속성, removeAttr을 사용하여 제거하기요약 : 아애 disabled속성을 제거하면 됩니다. 123 $('#selectTest').removeAttr('disabled'); Colored by Color Scriptercs 사용예시 : 123456789101112131415161718192021222324 New Document 1선택! 2선택! $('#selectTest').removeAttr('disabled'); Colored by Color Scriptercs
2017.10.31 -
javascript 전화걸기, 문자보내기, 메일보내기 영상 전화 거는 방법 : 영상전화 전화 걸기 : 010-1234-5678로 전화걸기 문자 보내기 : 문자 보내기 메일 보내기 : 메일 보내기 ※모바일 웹에서 동작합니다.감사합니다.
javascript 전화걸기, 문자보내기, 메일보내기javascript 전화걸기, 문자보내기, 메일보내기 영상 전화 거는 방법 : 영상전화 전화 걸기 : 010-1234-5678로 전화걸기 문자 보내기 : 문자 보내기 메일 보내기 : 메일 보내기 ※모바일 웹에서 동작합니다.감사합니다.
2017.10.30 -
부모 객체 선택 방법?-> parentNode 단수 예제 : $(#id).parentNode 이렇게 사용하면 됩니다. 조금 더 자세한 예제 : test.html 123456789101112131415161718192021222324 New Document remove함수 테스트입니다. $("#test").on("click", function(event) { event.target.parentNode.remove(); }); Colored by Color Scriptercs 감사합니다.
[javascript] 간단하게, 부모 객체 선택 방법!부모 객체 선택 방법?-> parentNode 단수 예제 : $(#id).parentNode 이렇게 사용하면 됩니다. 조금 더 자세한 예제 : test.html 123456789101112131415161718192021222324 New Document remove함수 테스트입니다. $("#test").on("click", function(event) { event.target.parentNode.remove(); }); Colored by Color Scriptercs 감사합니다.
2017.10.25