Tagged: JavaScript Date: 24th, February 2009
This post is mostly note to self… but some may find it useful.
For javascript compression, merging etc on Aptana (…eclipse…) use:
http://www.rockstarapps.com/joomla-1.5.8/products/downloads.html
Tagged: Ajax, JavaScript, PHP Date: 22nd, December 2008
I have just released very simple photo tagging solution. It works much like Facebook tagging and requires Prototype and optionally PHP5/MySQL (you can always make backend from scratch in any lang/db you wish… it requires novice skills).
Tested in Firefox, IE6+, Safari and Chrome.
Here is the link: http://ferdinand.rs/javascript/ferdinandphototag
Tagged: Ajax, Database, JavaScript, Programming, Wordpress Plugins Date: 9th, December 2008
Moved
Go to new addres >>
location.href=”http://ferdinand.rs/javascript/ferdinandslider”;
Tagged: JavaScript, PHP Date: 6th, October 2008
So here is one very simple php class. In past it has proven to be very useful in cases where you need to load multiple javascript files or on large project with a lot of modules (especially if those modules are developed by different persons).
It will help you to avoid double js file loads, it [...]
Tagged: JavaScript Date: 24th, March 2008
One of most common event related questions I got is about error in Mozilla browsers “event is not defined”.
IE and Mozilla treat event variable differently, while in IE it is a global variable (accessible without passing it to the function) in Mozilla you need to pass it every time (which btw is by w3c standards).
Example [...]