Question : How can I call my own function inside the AJAX/jQuery $.get() method?

I want to do something like this:
Code Snippet:
1:
2:
3:
4:
5:
$("#go_button").click(function(){
				 $.get("../RECORDS/GetEmployeeInfo", function(data) {
					 populateEmployeeTable(data); <-----it doesn't recognize this function that I created in a separated .js file
				 });				 
			});
Open in New Window Select All

Answer : How can I call my own function inside the AJAX/jQuery $.get() method?

As long as the external js file is included before that code executes, and it is defined in the global scope, it should be fine.

Maybe something else?
Wrong path?
Error in some of the other javascript?

Can you provide some source or a link?
Random Solutions  
 
programming4us programming4us