Hi all.
Today I improved jQuick.
The new version 1.1 supports events if passed as attributes, even with IE.
For example, instead of
$.FORM({},
$.LABEL({'for':'one'},"Digit "),
$.INPUT({id:'one'}).click(setValues)
).submit(function(){return false;});
you could write:
$.FORM({onsubmit:'return false;'},
$.LABEL({'for':'one'},"Digit "),
$.INPUT({id:'one',onclick:'setValues()'})
);
It is more compact and easier to understand.
For info and download: http://jquick.sullof.com
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/