I have a function like this:
retrieveData();
and then javascript code like this:
var retrieveData = function ()
{
function () { $('#updater').show(); }
$.post('......
This is I think a simple question but how can I pass an argument to the retrieveData function and have it availabe for use in the code following the .post ?
:)