본문 바로가기

프로그램&DB

jQuery AJAX ajaxSend() Method jQuery AJAX ajaxSend() Method jQuery AJAX Methods Example Change the content of a div element when an AJAX requests is about to be sent: $("div").ajaxSend(function(e,xhr,opt){ $(this).html("Requesting " + opt.url); }); Try it yourself » Definition and Usage The ajaxSend() method specifies a function to run when an AJAX requests is about to be sent. Syntax $(selector).ajaxSend(function(event,xhr,.. 더보기
jQuery AJAX ajaxError() Method jQuery AJAX ajaxError() Method jQuery AJAX Methods Example Trigger an alert box when an AJAX request fails: $("div").ajaxError(function(){ alert("An error occurred!"); }); Try it yourself » Definition and Usage The ajaxError() method specifies a function to be run when an AJAX request fails. Syntax $(selector).ajaxError(function(event,xhr,options,exc)) Parameter Description function(event,xhr,op.. 더보기
jQuery AJAX ajaxComplete() Method jQuery AJAX ajaxComplete() Method jQuery AJAX Methods Example Show a "loading" indicator image while an AJAX request is going on: $("#txt").ajaxStart(function(){ $("#wait").css("display","block"); }); $("#txt").ajaxComplete(function(){ $("#wait").css("display","none"); }); Try it yourself » Definition and Usage The ajaxComplete() method specifies a function to be run when an AJAX request complet.. 더보기
jQuery AJAX $.ajax() Method jQuery AJAX ajax() Method jQuery AJAX Methods Example Change the text of a div element using an AJAX request: $("button").click(function(){ $.ajax({url:"demo_ajax_load.txt", success:function(result){ $("div").html(result); }}); }); Try it yourself » Definition and Usage The ajax() method is used to perform an AJAX (asynchronous HTTP) request. All jQuery AJAX methods use the ajax() method. This m.. 더보기
PHP Sessions 세션 관련 활용 예제 A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information about one single user, and are available to all pages in one application. PHP Session Variables When you are working with an application, you open it, do some changes and then you close it. This is much like a Session. The computer knows who you are. It knows when .. 더보기
읽어두면 좋을만한 UX 서적 목록 읽어두면 좋을만한 UX 서적 목록 서재의 전뇌화 작업을 매진하면서 읽은 책들을 다시 볼 기회가 많아졌습니다. 확실히 서재에 있는 책들은 제 관심사를 반영합니다. 최근에 일 때문에도 그렇고, 제 관심사이기도 한 더 나은 소프트웨어를 만드는 방법은 무엇일까와 관련되어서 인지, UX에 관한 책들이 무척 많습니다. 그래서 오늘은 읽어 보시면 피와 살이 될만한 UX 서적 몇 권을 소개해 드리겠습니다. 딱히 UX 책이라고 규정짓기 어려운 것도 있지만, UX를 이해하는 데 도움이 될만한 책도 소개해 드리겠습니다. 디자인과 인간심리 UX를 말하는 데 도널드 노먼 교수를 빼 놓을 수 없죠. 일단 UX를 공부하고 싶다면 노먼 교수 쓰신 책들은 다 읽어 봐야 한다고 생각합니다. 그 책 가운데 디자인과 인간심리는, UX를 공.. 더보기
[ASP] Adodb.Command 사용법 . 쿼리 사용시 SQL = "DELETE TABLE WHERE IDX = ?" Set Cmd = Server.CreateOjbect("ADODB.Command") width Cmd .ActiveConnection = objConn .CommandType = adCmdText .CommandText = SQL .Parameters.Append Cmd.CreateParameter("IDX", adInteger, adParamInput, 0, idx) End width Set Rs = Cmd.Execute() Set Cmd = Nothing . 프로시저 사용시 Set Cmd = Server.CreateObject("ADODB.Command") with Cmd .ActiveConnection = objConn .. 더보기
[ASP DEXT] 이미지 썸네일(리사이즈) Set UpLoad = Server.CreateObject("DEXT.FileUpload") set objImage = Server.CreateObject("DEXT.ImageProc") UPLOADPath = UPLOADPath&"\tempFolder\" . . . '## 썸네일 사이즈가 고정이 아니라 비율로 줄어들게 ImageWidth = UpLoad("fileName").ImageWidth ImageHeight = UpLoad("fileName").ImageHeight fixWidth = 145 '## 썸네일 가로 사이즈 fixHeight = 110 '## 썸네일 세로 사이즈 if isThumbnail = "Y" then '## 썸네일을 사용한다면 if ImageWidth > fixWidth or .. 더보기