View Single Post
Old 03-24-2006, 10:10 AM   #6 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
change the processResponse to this to make sure it is being triggered and you are getting output:
HTML Code:
function processResponse(response) {
  alert(response);
  my_songs = eval(response);

}
another thing you may want to try is initialize the song var to an empty array
HTML Code:
var my_songs = new Array();
sde is offline   Reply With Quote