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')