Displaying 1 result from an estimated 1 matches for "ajaxfetched".
2006 May 25
13
functions calling functions
I think I may be missing a fundamental concept I hope someone can help 
me with. I have functions that won''t call other functions. Particularly 
after an Ajax request.
In the following object the ajax request onComplete calls the 
ajaxFetched function successfully. ajaxFetched tries to call function2 
but function2 does not execute.
Any ideas or workarounds?
thanks
Kevin
o = Class.create();
o.prototype = {
	initialize: function() {
		this.fetchAjaxData();
	},
	
	fetchAjaxData: function(){
		url="ajax/minimap.php";
		pars=&...