Tag Archives: JavaScript
Integrating JSLint for vim
A couple of months ago I moved away from TextMate and started using vim for most of my text editing needs. I love TextMate, but I needed a powerful text editor that is also available on other operating systems. Overall … Continue reading
jQuery list paginator plugin – Elpaginator
I know it’s been a while. I started about 5 posts, but haven’t finished any of them… Hopefully this makes up for it: as a treat for the new year, I thought a little jQuery plugin that I wrote would … Continue reading
Splitting a long JavaScript String across multiple lines
Whilst reading a comment by Mike DeBoer on Ajaxian about delimiting JavaScript strings with backslashes, I thought it’s worth mentioning it here as well, if only to remind myself. String concatenation always creates a new string. Thus, writing: var str = … Continue reading
JavaScript cookies made easy
Here is another little script that makes my life a bit easier. It consists of 3 methods that makes working with cookies very straight forward. This script is built on the shoulder of giants: PPK from Quircksmode was the man … Continue reading
jQuery plugin autoInputValue – default input values made easy
We all know the problem: the designers are struggling to get the form elements in the space they have or they decide that having labels next to input fields is not really necessary… Instead the label is displayed inside the … Continue reading