I have a simple list of records in an HTML table with a delete link for each row. The delete link shoots off an AJAX post request to a fixed url that looks like: \"/delet
/delet
I got $.post to work in Firefox by sending an empty object as the data parameter. Notice the empty brackets for parameter 2:
$.post
data
$.post(url, {}, function(response){ alert('done'); }, "json");