Recently I’ve stumbled on a pretty cool OpenSource project called ”datatables” (http://datatables.net/), which allows to easily create tables in HTML that can be: sorted searched paginated scroll infinitely themed … And most important: it’s for free! I’ve always wanted to create an infinite scrolling table and now it’s just too easy: And that’s it! Well,…
Tag: HTML
Perl/Ajax with JSON
I just discovered this very interesting article about Perl, CGI, Template and Ajax using JSON. I’m going to use to beef up my image browser which I quickly wrote to simply the contents of directory full with images. (can be found overhere http://yamamoto.moretrix.com/~insaniac/grtp/ Here’s the link to the article.
Retrieve a file from an authenticated website (in Perl)
At my daily job as a Perl developer, I was asked to write a Perl script which would download a backup file from a certain web interface. The file however, was in a secured part of the web site. This means, that the script would first have to authenticate against the web site and then…
Centering a CSS div layer in your browser window
Some time ago I needed to create a popup window on a web page, and it had be centered in the browser window. “Couldn’t be that hard” was my first thought, although I haven’t programmed anything in JavasScript for years. So using CSS and Javascript, this was actually a pretty easy job to do. The…