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 }); });