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: JavaScript
Google GeoChart, JSON and Perl
The Google API GeoChart Map (https://developers.google.com/chart/interactive/docs/gallery/geochart) is pretty nice widget to generate nice maps based on certain values. It has quite a lot of features and it is very easy to use. Before we look at the Google API for GeoChart, let’s first set up a script which will get data out of a database…
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.
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…