tags:

views:

363

answers:

1

i dont know what is happening here.

ajax is posted successfully. firebug doesn't complain.

however, success: function(){alert("complete");} never fires. its almost as if it is ignored.

success: alert("coomplete"); will of course fire everytime this ajax request runs.

please help!

A: 

I suspect it has to do with your dataType value. I just ran into this problem and solved it by removing the dataType line since I wasn't returning anything. After that it ran just fine. Give it a try!

PhilM