반응형
반응형

PHP Mobile Detect — Lightweight detection for mobile devices

Mobile Dev - PHP/Added on May 9, 2013/Add to favorites

PHP Mobile Detect is a lightweight PHP class for detecting mobile devices, including tablets and smartphones. It detects a mobile environment using the User-Agent string along with specific HTTP headers.

PHP Mobile Detect

 

반응형
반응형

HelloWorld 블로그 반응형 웹 개편

 

http://helloworld.naver.com/helloworld/81480

반응형
반응형

http://www.firepad.io/

 

http://www.firepad.io/docs/

 

GitHub: https://github.com/firebase/firepad

 

오픈소스 실시간 협업 텍스트 에디터.

ot.js 의 Operational-Transform 활용. Firebase 를 이용해서 특별한 서버는 필요없음.

 

 

반응형
반응형

http://jsfiddle.net/jasongennaro/pdXRx/8/

 

fiddle , jsfiddle

 

페이지 로드시 해당 영역에 텍스트를 입력하고, 글자색을 회색으로 변경.

해당 영역에 포커스가 오면 글자 삭제.

해당 영역 blur시 입력된 글자가 없으면 다시 placeholer에 넣을 글자 입력.

 

$('textarea').attr('value', 'This is a line \nthis should');

$('textarea').focus(function(){
    $(this).attr('value', '');
});

$('textarea').blur(function(){
    if($(this).val() ==''){
        $(this).attr('value', 'This is a line \nthis');
    }   
});

 

반응형

'프로그래밍 > Web' 카테고리의 다른 글

HelloWorld 블로그 반응형 웹 개편  (0) 2013.04.19
[WEB] http://www.firepad.io/-  (0) 2013.04.15
Google Maps API 웹 서비스  (0) 2013.03.28
DOM Reference - 레퍼런스  (0) 2013.03.28
[Sencha] Sencha Touch 2 설치 - install.sh  (0) 2013.03.14
반응형

Google Maps API 웹 서비스

 

Google Geocoding API

반응형

'프로그래밍 > Web' 카테고리의 다른 글

[WEB] http://www.firepad.io/-  (0) 2013.04.15
placeholder 에서 줄내림(NewLine) 사용하기  (0) 2013.04.11
DOM Reference - 레퍼런스  (0) 2013.03.28
[Sencha] Sencha Touch 2 설치 - install.sh  (0) 2013.03.14
[APTANA] ftp setting  (0) 2013.03.13
반응형

https://developer.mozilla.org/en-US/docs/Gecko_DOM_Reference

 

Gecko DOM Reference

반응형

+ Recent posts