I thought I'd start from the beginning with a function I use lot in javascript. This is very simple call with an id to retrieve and object:
function return_by_id(id) {
if (document.getElementById)
var return_var = document.getElementById(id);
else if (document.all)
var return_var = document.all;
else if (document.layers)
var return_var = document.layers;
else return false;
return return_var;
}
In my first month I have tampered with google maps functions and started extending a CMS for an important client which I hope all goes well. The new year will bring more challenges but I feel I can handle them now.
© Benjamin Wells 2008-2010