Language

자바스크립트에서 체크박스 Array 값 사용하기

자바스크립트에서 체크박스 Array 값 사용하기 Client Side <form method="get"> <input type="checkbox" name="options[]" value="1" /> <input type="checkbox" name="options[]" value="2" /> <input type="checkbox" name="options[]" value="3" /> <input type="submit" value="Go!" /> </form> function …

자바스크립트에서 체크박스 Array 값 사용하기 Read More »

IOS에서 폼 필드 초기화하기

IOS에서 폼 필드 초기화하기 텍스트 필드 input,textarea{background-clip:padding-box;-webkit-appearance:none;-webkit-border-radius: 0;} 라디오 버튼 input[type=radio]{border-radius:100%;}

IOS에서 Auto Tel 제거하기

IOS에서 Auto Tel 제거하기 <meta name="format-detection" content="telephone=no" />

php에서 자동으로 스타일 및 스크립트 파일 불러오기

php에서 자동으로 스타일 및 스크립트 파일 불러오기 스타일시트 파일 불러오기 function auto_enqueue_style($version='') { $basename = basename($_SERVER['REQUEST_URI'], '?' . $_SERVER['QUERY_STRING']); $split = explode('.', $basename); $filename = $split[0]; $extension = $split[count($split)-1]; $fileUrl …

php에서 자동으로 스타일 및 스크립트 파일 불러오기 Read More »

Scroll to Top