Link to home
Start Free TrialLog in
Avatar of srbarker8
srbarker8Flag for Canada

asked on

Returning and executing javascript with AJAX


Hi there,

I am using AJAX on my current website project to update my pages dynamically.  

I am having a problem when I return a script for execution on the page.  When I receive the ajax return, my callback function simply puts it into a hidden div using jquery's html() call.  

This parses the script and it runs.  So if I include a script in there it gets run.

However, I would like to also be able to call scripts that exist on the current page (not in the ajax return)

I have seen talk of using namespaces .. but I do not know how to frame this up.

Can anyone help me?

The attached is my sample code process.  When AJAX places the script in my hidden worker div via .html() it executes the returned function properly, but the call to the function in the current page does not ... and no error is thrown.

ON MY PAGE:

--> This is the script which retrieves with AJAX:

function Grab_Script(parm1,parm2)
	{
		
		Proxy.callMethod('grab_script', [parm1,parm2], function(result){
		
		$("#worker_div").html(result);
				
			},onPageError);			
					
	}

-->This is the sample function that already exists on the page:

	
	function page_func()
	{
	alert('this function already exists on the page');
	}


-->  This is what the ajax return looks like.  

<script>			
function do_this_new_func(msg)
{
	alert(msg);
}

do_this_new_func("received: call=grab_script | parm1= test | parm2= one");
do_page_func();
	
</script>

The call do_this_new_func() works.
The call do_page_func() does NOT work.

I assume that this is because it cannot access what is on the page.

So, how can I change this process so that scripts I build on the server and return via ajax can run and access other scripts/function already on the page?

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of HainKurt
HainKurt
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of srbarker8

ASKER

Cr@p! LOL!

It seems my formula is bad:

Low sleep + zero coffee = bleary eyed coder

Thx for the assist!!!