Click here to Skip to main content
15,893,722 members
Articles / Desktop Programming / ATL

Function Call Tracing in JScript

Rate me:
Please Sign up or sign in to vote.
4.58/5 (18 votes)
3 Jul 2007CPOL15 min read 53.9K   6.4K   49  
Comprehensive JScript function call tracing without code modification.
<!-- 
	Example - API Usage. 
	
	- the "language" attribute ensures the JSD "engine" is used 
-->

<SCRIPT language="jscriptdebug" src="Test.js"></SCRIPT>

</HEAD>
<BODY id=oBody onload="setButtonText()">

<BUTTON ID="oFlip" onclick="doFlip('hello')">Flip</BUTTON>
<BUTTON ID="oFlop" onclick="doFlop('hello','moto')">Flop</BUTTON>
<BUTTON ID="oTrace" onclick="doOnOff()">[THIS IS REPLACED ON LOAD]</BUTTON>
<BUTTON onclick="clearTrace()">Clear</BUTTON>

</BODY>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions