<form method="post" action="m2.php" enctype="multipart/form-data">
	<input type="file" name="attach" accept="image/*" capture="camera" />
	<input type="submit" value="확인" />
</form>

<p>Capture Image: <input type="file" accept="image/*" id="capture" capture="camera"> 
<p>Capture Audio: <input type="file" accept="audio/*" id="capture" capture="microphone"> 
<p>Capture Video: <input type="file" accept="video/*" id="capture" capture="camcorder">
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?php
$var = '<script>var test = "aaaa"; document.write(test);</script>';
echo $var;
?>

'php, codeigniter' 카테고리의 다른 글

서버 점검(ping) 테스트  (0) 2015.10.17
일주일 단위로 달력 출력  (0) 2015.09.03
http, https 태그를 a태그(링크) 처리  (0) 2015.07.20
php 헤더 정보 보기  (0) 2015.07.15
한글 포함 여부 체크  (0) 2015.07.14
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

Wowza - K.zip
다운로드

* 와우자에서 한글 인식 안될때 - 관련 모듈 설정

관련 링크 : http://cafe.naver.com/wowzamedia/29

* 설정방법 - Application.xml 파일의 끝부분의 Properties에

<Property>
	<Name>aliasMapFileStream</Name>
	<Value>${com.wowza.wms.context.VHostConfigHome}/conf/aliasmap.stream.txt</Value>
</Property>

<Property>
	<Name>aliasMapFilePlay</Name>
	<Value>${com.wowza.wms.context.VHostConfigHome}/conf/aliasmap.play.txt</Value>
</Property>

<Property>
	<Name>aliasMapPathDelimiter</Name>
	<Value>/</Value>
</Property>

<Property>
	<Name>aliasMapNameDelimiter</Name>
	<Value>=</Value>
</Property>

<Property>
	<Name>aliasMapDebug</Name>
	<Value>false</Value>
	<Type>Boolean</Type>
</Property>

* 첨부파일의 txt 파일 2개는 /conf jar 파일은 /lib, 수정 후 shutdonw.sh -> startup.sh

'etc' 카테고리의 다른 글

hls(HTTP Live Streaming)  (0) 2019.10.14
이클립스에서 utf-8 설정  (0) 2016.02.18
익스플로러 XSS 필터링 해제  (0) 2014.10.17
Net sparker - 웹 보안성 평가 툴  (0) 2014.09.27
httpwatch / 웹사이트 정보 모니터링  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* 숫자만 입력

$(document).on("keyup", "input:text[numberOnly]", function() {$(this).val( $(this).val().replace(/[^0-9]/gi,"") );});

* 영문만 입력

$(document).on("keyup", "input:text[engOnly]", function() {$(this).val( $(this).val().replace(/[0-9]|[^\!-z]/gi,"") );});

* 영문 + 띄어쓰기

$(document).on("keyup", "input:text[engOnly]", function() {$(this).val( $(this).val().replace(/[0-9]|[^\!-z\s]/gi,"") );});

* 한글만 입력(테스트결과 IE에서 안먹을 때가 가끔 있음)

$(document).on("keyup", "input:text[korOnly]", function() {$(this).val( $(this).val().replace(/[a-z0-9]|[ \[\]{}()<>?|`~!@#$%^&*-_+=,.;:\"\\]/g,"") );});
출처 : http://joonjava.blogspot.kr/2014/07/jquery_28.html

'javascript, jquery' 카테고리의 다른 글

엔터(enter) 입력시 폼(form) 전송  (0) 2015.09.01
ajax 파일 전송  (0) 2015.08.31
a 앵커 이동 부드럽게 이동  (0) 2015.07.23
checkbox, radio 값 설정  (0) 2015.04.29
라디오값(radio) 가져오기  (0) 2015.04.21
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
$(document).ready(function({
	$("body").animate({ scrollTop: $('a[name=w1]').offset().top},100);
});

'javascript, jquery' 카테고리의 다른 글

ajax 파일 전송  (0) 2015.08.31
input 한글만, 영어만, 숫자만  (0) 2015.07.23
checkbox, radio 값 설정  (0) 2015.04.29
라디오값(radio) 가져오기  (0) 2015.04.21
jquery validate 메시지를 alert으로 변환하기  (0) 2015.04.06
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,