Blog Entries

Converting Lisp universal times to Java Dates

Wednesday, March 29th, 2006 by DenisH

I don’t suppose that this is something that many people need to do, but just in case I thought I’d post this little code snippet (more…)

Debugging Javascript in Firefox

Monday, March 27th, 2006 by DenisH

I’ve recently been trying to make some of my scripts work with Firefox 1.5 (from IE) and I was looking for some debugging help to set me on the right track. I found this tool which seems to work very well: http://getahead.ltd.uk/ajax/venkman.

It’s an updated version of Venkman fixed to work with Firefox 1.5.

One of the things it helped me find is that whereas in IE if I ask a table cell (TD) for the nextSibling and get the next TD, in Firefox you always seem to get a text node first and then the next TD. Similarly for getting the next and previous rows.

Internet Explorer Toolbar

Monday, February 13th, 2006 by DenisH

If you are doing web development for Internet Explorer, then have a look at this toolbar from Microsoft.

It provides all sorts of useful features: it’ll validate the HTML, show the sizes of images, where tables and cells and DIVs are, allow you to see the DOM and all sorts of other useful bits and pieces.

(Thanks to PCPro magazine for that tip! www.pcpro.co.uk)