I've tried using both Google Closure and Yahoo's YUI, but repetitive long lines are not minified. To fix this I added in :
var M =
{
m1: function( html_id, method_call )
{
return ( document.getElementById( html_id ).onclick = method_call );
}
};
so that instead of writing
document.getElementById(test).onclik = test;
I can write
M.m1(test,test);
However this makes the code difficult to read. Is there an option I'm missing that will do this for me. Surely Google or Yahoo know how to do this automatically?