I have this code which is dynamically generated from an ad server:
document.write ('<script type="text/javascript"> var introclip =\n');
document.write ('" </script> \n');
document.write ('<img src=" border=0>');
I would like to be able to read the var introclip and use it somewhere else in my script or page. I can't seem to be able to read the variable at all though. Any thoughts?
Thanks.
document.write ('<script type="text/javascript"> var introclip =\n');
document.write ('" </script> \n');
document.write ('<img src=" border=0>');
I would like to be able to read the var introclip and use it somewhere else in my script or page. I can't seem to be able to read the variable at all though. Any thoughts?
Thanks.