반응형
반응형

Reveal — Runtime inspection for iOS apps

reveal

 

반응형
반응형

Revel — High-productivity Go web framework

revel

 

반응형
반응형

자바스크립트 레퍼런스 모음 -  https://trello.com/#b/DlJ9r6tg/dev-ref

 

https://trello.com/#b/DlJ9r6tg/dev-ref

 

 

 

Backbone.js Ebook입니다.
영문판이고요. 한글 번역이 있었는데. 해당 Github Page가 삭제되었더라고요.
http://addyosmani.github.io/backbone-fundamentals/

Dailyjs 에 연재되었던 Backbone Tutorial입니다.
http://dailyjs.com/2012/11/29/backbone-tutorial-1/


여러 자바스크립트 라이브러리가 카테고리로 분류되어 있는 사이트입니다.
http://jster.net/


프론트엔드 개발시 참고할만한 다양한 기술 스택에 대해 분리되어있습니다.
https://github.com/dypsilon/frontend-dev-bookmarks


자바스크립트 코딩 스타일 가이드 문서입니다.
영문판: https://github.com/rwldrn/idiomatic.js
한글: https://github.com/rwldrn/idiomatic.js/tree/master/translations/ko_KR


다양한 자바스크립트 MV* 프레임웍에 대해 TODO 웹앱이 예제로 분류되어 있습니다.
실제 각 프레임웍을 사용해 어떻게 SPA를 작성하는지 참고할만합니다.
http://todomvc.com/


JQUERY MOBILE + PHONEGAP + ENERGIZE.JS
가이드
http://teusink.blogspot.kr/2013/04/android-example-app-with-phonegap-and.html
 
모바일페이지
http://www.teusink.org/blog/JQM-example-app/
 
다운로드
http://www.teusink.org/blog/PG-JQMExampleApp.zip
 
참고 : http://jadefan.blog.me/70158768436


bootstrap 하시는 분들은 다 아실수도 있겠지만 처음접하는 저에게는 신기하네요.. 템플릿 바로 적용해볼 수 있고 샘플들도 있네요.
http://bootply.com/

Backbone.js 배우는 방법 가이드
http://mobicon.tistory.com/226
DEV.STUDY 멤버이신 윤영식님의 블로그 입니다.

반응형
반응형

CSS - Cheat sheet

 

 

반응형
반응형
개발자를 위한 Mac 개발환경 세팅 References.

https://trello.com/b/lLHeALya/dev-mac-environment

 

 

 

반응형
반응형


ajax() 메소드는 비동기 요청을 수행.

 

http://api.jquery.com/jQuery.ajax/
http://www.w3schools.com/jquery/ajax_ajax.asp

 

jQuery.ajax( url [, settings ] )Returns: jqXHR

  $.ajax({
     url:"demo_test.txt",
     success:function(result){
       $("#div1").html(result);
   }});


getJSON() 메소드는 AJAX HTTP Get 요청을 사용하여 JSON 데이터를 가져온다.

 

http://api.jquery.com/jQuery.getJSON/
http://www.w3schools.com/jquery/ajax_getjson.asp

 

jQuery.getJSON( url [, data ] [, success(data, textStatus, jqXHR) ] )Returns: jqXHR

 

$.getJSON('http://yoururl?callback=?', function(data){alert(data)});

 

var jqxhr = $.getJSON( "example.json", function() {console.log( "success" );})
             .done(function() { console.log( "second success" ); })
             .fail(function() { console.log( "error" ); })
             .always(function() { console.log( "complete" );
             });
             // perform other work here ...
             // Set another completion function for the request abovejqxhr.complete(function() { console.log( "second complete" ); });

 

jqxhr.complete(function() { console.log( "second complete" ); });

 

 

getScript() 메소드는  AJAX HTTP GET 요청을 이용하여 javascript를 실행한다.

 

http://api.jquery.com/jQuery.getScript/

 

jQuery.getScript( url [, success(script, textStatus, jqXHR) ] )Returns: jqXHR

 

$.getScript("demo_ajax_script.js");

 

$.getScript("ajax/test.js", function(data, textStatus, jqxhr) {  
                     console.log(data); //data returned  
                     console.log(textStatus); //success  
                     console.log(jqxhr.status); //200  
                     console.log('Load was performed.');});

 

$.getScript("ajax/test.js").done(function(script, textStatus) { 
                                    console.log( textStatus );})
                           .fail(function(jqxhr, settings, exception) { 
                                    $( "div.log" ).text( "Triggered ajaxError handler." );
                           });

 

 

 

 

반응형

+ Recent posts