I was wondering what is the best method to still have the 500ms delay for an s.tl() call when no link object is passed? If I still pass 'this' and it doesn't reference anything, will it still have the 500 ms delay?Just want to know how I still initiate the 500 ms delay when link object is not present? Example:
function trackNoLinkObj(partnerID){
s.events=s.linkTrackVars=s.linkTrackEvents = "";
s.linkTrackVars = "prop1,prop2";
s.linkTrackEvents = "None";
s.tl(this,'o',partnerID);
};
Thanks!