I'd like to have an
optional third parameter though I don't want the error console complaining when it does not exist, how do I handle an undefined parameter in such a situation? I have trued to return, return true, return false, and null though since none of those worked I presume the extent of my know-how has run out.
- John
My JavaScript looks like this...
function ajax2(name3up,name2up,name1up)
{
if (name1up == undefined) {null;}
}