The best way (IMO) to know if they're working is to view this site in
Firefox with the Web Developers Toolbar. Under the View Source button on the
toolbar is an option for "view generated source". This will show you the
results of the page after any JavaScript has been executed. It'll display
new
Not exactly.
The $(document).ready function fires when the DOM has been fully built, so
not all the images will be loaded at that time.
You could bind to the images load method as well.
function fixDimensions()
{
var img = $(this);
img.attr('width',img.width());
img.attr('height',img.h
2 matches
Mail list logo