[ic] do not parse

Jon Jensen interchange-users@icdevgroup.org
Tue Oct 15 16:48:01 2002


On Tue, 15 Oct 2002, Grant wrote:

> >Have a look at
> >http://www.icdevgroup.org/cgi-bin/ic/docfly.html?mv_arg=icconfig05%2e55
> >
> >[pragma no_image_rewrite]
>
> That looks like a useful tag, but I need only this one section of code with
> all of my pages to not be rewritten with the image directory.
> 
> What's going on here is I'm trying to implement WebTrends Live with my IC
> store.  It requires a piece of code like this:
> 
> document.write('<IMG ID="WTL_146012" BORDER="0" WIDTH="1" HEIGHT="1"
> SRC="'+W+'">');
> 
> on all of the pages to be tracked (which means all of my pages) and if
> IC adds the image directory to it, the tracking won't work.  Is there
> anything else that might work?

Probably the only easy way is to break up your <IMG ...> tag so 
Interchange doesn't recognize it:

document.write('<' + 'IMG ID="WTL_146012" ...

Jon