I have a var in jquery after a request like
         type: 'POST',
     data: data,
     cache: false,
     success: function (data) {
         var json = jQuery.parseJSON(data);
I'm trying to use timeout to fire the function below after five seconds.
        $("#a" + json.id).fadeOut(300);
At the moment I'm doing
          setTimeout('$("#a" + json.id).fadeOut(300)', 500);
but it doesn't seem to work
 
     
     
    