<script>
function insertAtCaret(areaId,text) {
	var txtarea = document.getElementById(areaId);
	var scrollPos = txtarea.scrollTop;
	var strPos = 0;
	var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? 
		"ff" : (document.selection ? "ie" : false ) );
	if (br == "ie") { 
		txtarea.focus();
		var range = document.selection.createRange();
		range.moveStart ('character', -txtarea.value.length);
		strPos = range.text.length;
	}
	else if (br == "ff") strPos = txtarea.selectionStart;

	var front = (txtarea.value).substring(0,strPos);  
	var back = (txtarea.value).substring(strPos,txtarea.value.length); 
	txtarea.value=front+text+back;
	strPos = strPos + text.length;
	if (br == "ie") { 
		txtarea.focus();
		var range = document.selection.createRange();
		range.moveStart ('character', -txtarea.value.length);
		range.moveStart ('character', strPos);
		range.moveEnd ('character', 0);
		range.select();
	}
	else if (br == "ff") {
		txtarea.selectionStart = strPos;
		txtarea.selectionEnd = strPos;
		txtarea.focus();
	}
	txtarea.scrollTop = scrollPos;
}

$(document).ready(function() {
	$("#a").click(function() {
		var a = $("#myTextBoxSelector").getCursorPosition();
		alert(a);
	});
});
</script>

<textarea id="textareaid"></textarea>
<a href="#" onclick="insertAtCaret('textareaid','text to insert');return false;">Click Here to Insert</a>
블로그 이미지

디츠

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

,
header('Access-Control-Allow-Origin: http://test.com');

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

이클립스에서 php 플러그인  (0) 2017.09.14
codeigniter - 3.0 router  (0) 2016.02.18
태그와 태그사이 정규식으로 내용 추출  (0) 2016.01.07
서버 점검(ping) 테스트  (0) 2015.10.17
일주일 단위로 달력 출력  (0) 2015.09.03
블로그 이미지

디츠

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

,
$text = "<tbody>test</tbody>";
preg_match("/<tbody>(.*?)<\/tbody>.*/s", $text, $match);
echo $match[0];

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

codeigniter - 3.0 router  (0) 2016.02.18
다른서버로 POST 전송할때 설정  (0) 2016.01.13
서버 점검(ping) 테스트  (0) 2015.10.17
일주일 단위로 달력 출력  (0) 2015.09.03
php 변수를 javascript로 넘기기  (0) 2015.08.28
블로그 이미지

디츠

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

,
var getval = $('#ifrm',opener.document).contents().find("body").html();
블로그 이미지

디츠

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

,

pdo_mysql 연동

database, query 2015. 12. 17. 16:56
출처 : http://xinet.kr/tc/entry/pdo_mysql

'database, query' 카테고리의 다른 글

mssql 로그파일 크기 줄이는 법  (0) 2016.04.05
mysql - 1년전 게시물 가져오는 query  (0) 2016.03.24
MySQL IP 접속 권한  (0) 2015.06.22
mssql - auto_increment 초기화  (0) 2015.05.01
메일주소 포함된 필드 찾기  (0) 2015.02.17
블로그 이미지

디츠

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

,
// 파일명으로 정렬
$("#sort").click(function() {
	var ul = $("#attach_item");
	var li = ul.children("li").get();
	li.sort(function(a,b) {
		return $(a).find("div > div > small").text().toUpperCase().localeCompare($(b).find("div > div > small").text().toUpperCase());
	});
	$.each(li,function(idx, item) {
		ul.append(item); 
	});
	var i = 0;
	$("#attach_item [name=sort\\[\\]]").each(function() {
		$(this).val(i);
		i++;
	});
});
블로그 이미지

디츠

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

,