function demo()
{
// your code here which will called on click event
}
$(document).ready(function(){
$('.add').bind('click',demo);
});
//After successfully ajax call response
//Unbind the click event first
$('.add').unbind('click',demo);
//Then again bind the event
$('.add').bind('click',demo);