Skip to content

Instantly share code, notes, and snippets.

View elegantcoder's full-sized avatar

Constantine Kim 김현진 elegantcoder

View GitHub Profile
# +Includes 를 넣었습니다. 이것은 httpd.conf 에서 <Directory> 설정을 상속받아 Includes를 추가해주어야 하므로
# Options Includes 가 아니라  Options +Includes 입니다.
# .htaccess 를 사용하려면 <Directory> 에서 AllowOverride All 로 설정하세요.
AddOutputFilter INCLUDES .html
Options +Includes
fCollection.on 'reset', (collection, opts) ->
# contents of opts
# {
# error: function (model, resp) {}
# parse: true
# success: function (resp, status, xhr) {}
# }
@elegantcoder
elegantcoder / label-ui-like-placeholder-pw.html
Created July 14, 2012 16:06
입력 필드 내에 텍스트 표시 UI 의 예제 코드
<label for="ex1-pw-input" style="display:none;">비밀번호</label>
<input type="password" value="비밀번호" data-placeholder="비밀번호" id="ex1-pw-input" />