December 2007 Archives
December 31, 2007
Emacs in MacOS X 10.5 Leopard
Anyway, the second comment for that post pointed out that one can use the Emacs.app wrapper comming with official emacs CVS repository to build (without compile) a Emacs.app, I just did it and uploaded that to my .Mac public folder. Go download that at here: Emacs.app.tgz (25 kb). You must be using Leopard otherwise it won't work.
December 29, 2007
jquery way to limit image size.
UPDATE: You might be interested in reading this article: Javascript's way to know the image size.
Find all images under current box, and limit their width to at most the same as current box.
var w = $(this).width();
$(this).find("img").each(function() {
if ( $(this).width() > w ) {
$(this).width("100%");
}
});
This is something similar to always wrap a div around an image. Only it's a piece of un-obstructive javascript instead of over-augmented-semantic-hack-sorting-out-bad-css-box-model.
This generally works good on Firefox, IE7. Didn't try others.
Labels: image width, javascript, jquery