전체 글(84)
-
TEXT to Clipboard on a Button-Click
HTML How to copy a TEXT to Clipboard on a Button-Click Hello, I'm TEXT 1Hi, I'm the 2nd TEXT Copy TEXT 1Copy TEXT 2 CSS body { background-color:#999999; font-family: 'Oswald', sans-serif; }p{ color:#000000; font-size:20px;} .textBox{ height:30px; width:300px;} button{ height:30px; width:150px; border-radius:8px; padding:10px; font-size:20px; font-family: 'Oswald', sans-serif; height:52px; cursor..
2018.03.10 -
텍스트 복사 / 붙여넣기 자바스크립트
복사 가져오기 Hello This div content have to be select.Select Div function selectText(element) { var doc = document , text = doc.getElementById(element) , range, selection ; if (doc.body.createTextRange) { //ms range = doc.body.createTextRange(); range.moveToElementText(text); range.select(); } else if (window.getSelection) { //all others selection = window.getSelection(); range = doc.createRange(); r..
2018.03.09 -
Firebase를 사용해서 PUSH를 보내는 간단한 sample 코드
구글이 선보인 Firebase를 사용해서 PUSH를 보내는 간단한 sample 코드입니다.모델로 구현을 했는데 상황에 따라서 controller로 구현을 해도 될 듯 합니다.?12345678910111213141516171819202122232425262728293031323334353637383940414243444546
2018.03.05 -
PHP 아이폰으로 사이트 접속시 모바일페이지로 이동시키기
http://www.abc.com PC용 사이트 http://www.abc.com/m/ 모바일용 사이트
2018.03.05 -
체크박스 클릭하면 텍스트 입력 필드 복사하기 예제
To add more fields, just add to the parameters shown above...like this: f.billingstate.value = f.shippingstate.value; f.billingzip.value = f.shippingzip.value; The HTML for the form you will use looks like this: Mailing Address Name: City: Check this box if Billing Address and Mailing Address are the same. Billing Address Name: City:
2018.03.05 -
php ajax bootstrap datepicker 예제
#index.php
2018.03.05