Hi, I was thinking of using fiddler for the following purpose -
I have a javascript based service I want to demonstrate to potential clients. In order to show them what their web site could look like if they install (i.e. include) my javascript, I want to set up fiddler on my pc, so that when fetching the client's website, the
<script type="text/JavaScript" src="myscript.js"></script>
line will be included in the HTML section.
Can this be easily done with fiddler? Could someone point me to where I may find the documentation covering that if it is?
Thanks!
----Update----
For the time being I have resorted to using a BHO to add my script to the page. I use execScript(), upon onDocumentComplete, to run a simple piece of javascript which appends the .js file I need to the page. But EricaLaw's pointers and jitter's answer seem like the way to go for a more complete (and elegant) way to do what I need.
If someone is interested I could upload the BHO code here. -Thanks!