-
Recent Posts
Recent Comments
- sherif sadek on Understanding Hibernate session flushing
- Koushik Paul on Hibernate query limitations and correlated sub queries
- Joseph Albert on Showing unused TestNG tests
- Iván on Maven offline build fails to resolve artifacts in your local repository
- Peter on Comparing two MySQL databases
Archives
- October 2024
- July 2024
- June 2024
- May 2024
- January 2024
- October 2023
- July 2023
- January 2023
- July 2022
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- December 2020
- June 2020
- May 2020
- January 2019
- November 2018
- September 2017
- June 2017
- September 2016
- August 2016
- February 2016
- July 2015
- November 2014
- October 2014
- August 2014
- April 2014
- February 2014
- December 2013
- November 2013
- May 2013
- February 2013
- January 2013
- October 2012
- September 2012
- July 2012
- April 2012
- February 2012
- January 2012
- November 2011
- October 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- November 2010
- October 2010
Categories
Meta
Tag Archives: javascript
Generating Javascript with Scala and Lift
One of the ideas that has become popular in recent years is the concept of writing complex browser GUIs entirely in your server side language, and generating the required javascript. In Java both the Google Web Toolkit and ZK allow … Continue reading
Using jQuery in bookmarklets
Writing a javascript bookmarklet is a great way to add functionality to a web page that you don’t control. But if you use jQuery, wouldn’t it be neat to be able to use that in your bookmarklet? You can do … Continue reading
Writing a bookmarklet
A bookmarklet is a piece of javascript that you store as a bookmark. It’s a neat way of adding functionality to a web page that you don’t control. As part of my job, my team develops code in branches and … Continue reading
Coffeescript – improved javascript
An interesting attempt to create a more powerful syntax for javascript: http://jashkenas.github.com/coffee-script/
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
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