|
#1
|
|||
|
|||
|
hi,
i got a source code from google and i want to use it but there is a script in that "i think it tracks our information"(not exactly sure). if i remove it my script it is not working.becoz there is ab.js in that url . i downloaded that ab.js file seperately can any one tell what exactly the bellow script is for if it is for tracking plz tell me how to avoid without disturbing my script ------------------------------------------- <script type="text/javascript"> var Host = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + Host + "abc.com/ab.js' type='text/javascript'%3E%3C/script%3E")); </script> ------------------------------ |
|
#2
|
|||
|
|||
|
it writes to the document
<script src='https://ssl.abc.com/ab.js' type='text/javascript' ></script> or <script src='http://www.abc.com/ab.js' type='text/javascript' ></script> dependent on the document.location.protocol
__________________
Vic God Loves You and will never love you less. http://www.vicsjavascripts.org.uk/ |
|
#3
|
|||
|
|||
|
Quote:
can u tell me how to avoid it doing and use that ab.js within my files(iam having that file) when iam removing that script from my file my code is not exactly working |
|
#4
|
||||
|
||||
|
Just replace it with an external script tag that points to your copy of the script, ex:
Code:
<script type="text/javascript" src="ab.js"></script>
__________________
WWWWWWWWWWWW - John________________________ Really Show Your Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|