Archive for month: October, 2009

Mojalbum.com launch

28 October, 2009 (18:18)

I have updated my showcase page, notice the first item in the list: Mojalbum.com. This web page is not new (it was “born” more than 5 years ago), but our company has bought it earlier this year. And now we have re-realesed it after we have built it from scratch. All that is left is [...]

Change page title with jQuery

14 October, 2009 (15:15)

I just had a need to change the title of the page with JavaScript, and since I use jQuery I imediatelly wrote this:
$( ‘title’ ).html ( ‘new title’ );
and it didn’t work. Ok, how about this:
$( ‘title’ ).val ( ‘new title’ );
nope. So after some googling I found out that jQuery just can’t do that. [...]

Setting PHP variables from JavaScript

8 October, 2009 (08:10)

There’s a great deal of forum threads floating around internet where someone is asking “how to set a PHP variable from JavaScript/client”. In most cases the author just doesn’t know how the technology (html, JavaScript, PHP, http, …) he is using works. I’m assuming he somehow thinks that if he will (somehow) set/change a PHP variable from [...]