Monthly Archives: October 2010

Hiding table columns with jQuery

A nice example of hiding a table column using jQuery is here: http://www.devcurry.com/2009/07/hide-table-column-with-single-line-of.html That example shows how to hide a single column. How might you do it if you have a row of tickboxes, one for each column? Here is … Continue reading

Posted in jQuery | Tagged , | Leave a comment

Printing Ant classpaths

Debugging Ant classpaths can be a bit of a pain, but the following link shows you how to print them out: http://www.javalobby.org/java/forums/t71033.html Even better, you can do a pretty version using: http://blog.andrewbeacock.com/2005/08/pretty-printing-java-classpaths-using.html

Posted in Ant, Java | Tagged , | Leave a comment

jQuery – SelectorGadget and interactive tester

One of the fundamental features of the jQuery javascript library is its powerful selectors, that allow you to find elements in the DOM tree using CSS syntax. However, it can be annoying if you are writing some code and your … Continue reading

Posted in jQuery | Tagged , | Leave a comment

varchar and text data types in MySQL

Do you know the difference between the varchar and text types in MySQL? Up until MySQL 5.0.3, the varchar data type could only hold up to 255 characters, but from 5.0.3 onwards, it can store up to 65,535, which means … Continue reading

Posted in MySQL | Tagged | Leave a comment