Could you please be more specific on how to do this? I am connecting with an xml file using javascript and need to determine weather or not a tag or node exists. If the tage exists, a variable is incremented. If not, it stays the same:
var one = response.getElementsByTagName("job").childnodes.on e;
n = 0;
if ( typeof (one) == null ) { n = 9 }
else { n++; }
alert (n);
Thanks,
Bob
http://www.thehappypixel.com