André Goliath wrote:
if ((myLinker1 != "") || (myLinker1 != undefined) || (myLinker1 != null))
{
myHtml += "<a href=\"" + myLinker1 + "\" target=\"_blank\">" + myLinker1 + "</a><br>";
}

but then the trace of my results does not even work (it includes the records that are empty).
<<

Shouldn´t it be
if ((myLinker1 != "") && (myLinker1 != undefined) && (myLinker1 != null))

?

Well I am testing for any of them, not all of them.

IE "" or null or undefined.


d

_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to