자바 이야기
2013년 5월 23일 목요일
JSP에서 white space 제거
JSP에서 white space 제거
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
trimDirectiveWhitespaces="true"
%>
2013년 5월 10일 금요일
jquery print all event handlers
$.each($('#el').data('events'), function(i, e) {
console.log(i);
});
jquery 1.4+
$.each($('#el').data('events'), function(i, event) {
$.each(event, function(j, h) {
console.log(h.handler);
});
});
jquery 1.8+
$._data($('#el'), 'events')
$('#el').data('events')
최근 게시물
이전 게시물
홈
피드 구독하기:
글 (Atom)